DIY Steward #1505
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DIY Steward | |
on: | |
schedule: | |
- cron: '0 */4 * * *' | |
workflow_dispatch: | |
concurrency: steward | |
jobs: | |
steward: | |
runs-on: ubuntu-latest | |
name: DIY Steward | |
steps: | |
- uses: sbt/setup-sbt@v1 | |
- uses: actions/checkout@v4 | |
- name: Generate token | |
id: generate-token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: 123456 | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Launch Scala Steward | |
uses: scala-steward-org/scala-steward-action@v2 | |
with: | |
github-token: ${{ steps.generate-token.outputs.token }} | |
author-email: 123456+your-app-name[bot]@users.noreply.github.com | |
author-name: your-app-name[bot] | |
github-app-id: 123456 | |
github-app-key: ${{ secrets.APP_PRIVATE_KEY }} |