Scala Center Steward #469
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: Scala Center Steward | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
steward: | |
runs-on: ubuntu-latest | |
name: Scala Center Steward | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate token | |
id: generate-token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.SCALA_STEWARD_APP_ID }} | |
private_key: ${{ secrets.SCALA_STEWARD_APP_PRIVATE_KEY }} | |
- name: Launch Scala Steward | |
uses: scala-steward-org/scala-steward-action@v2 | |
with: | |
github-token: ${{ steps.generate-token.outputs.token }} | |
repos-file: 'repos.md' | |
author-email: 111975575+scala-center-steward[bot]@users.noreply.github.com | |
author-name: scala-center-steward[bot] | |
- uses: gautamkrishnar/keepalive-workflow@v2 | |
if: always() | |
with: | |
committer_username: scala-center-steward[bot] | |
committer_email: 111975575+scala-center-steward[bot]@users.noreply.github.com |