Launch Scala Steward #88
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
# This workflow will launch at 00:00 every Sunday | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
name: Launch Scala Steward | |
jobs: | |
scala-steward: | |
runs-on: ubuntu-latest | |
name: Launch Scala Steward | |
steps: | |
- name: Generate token | |
id: generate-token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
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 }} |