Launch Scala Steward #156
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
on: | |
schedule: | |
- cron: '0 0 * * 1,5' # every Monday and Friday | |
workflow_dispatch: | |
name: Launch Scala Steward | |
jobs: | |
scala-steward: | |
runs-on: ubuntu-latest | |
name: Scalameta Scala Steward | |
steps: | |
# Needed or else it won't find your repos file | |
- uses: actions/checkout@v3 | |
- name: Launch Scala Steward | |
uses: scala-steward-org/scala-steward-action@v2 | |
with: | |
github-token: ${{ secrets.SCALAMETA_BOT_GH_TOKEN }} | |
author-email: [email protected] | |
author-name: Scalameta Bot | |
repos-file: repos.md | |
other-args: '--add-labels' | |
- uses: gautamkrishnar/keepalive-workflow@v2 | |
if: always() | |
with: | |
committer_username: Scalameta Bot | |
committer_email: [email protected] |