Scala Steward #869
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 Steward | |
on: | |
schedule: | |
- cron: "10 9-18 * * MON-FRI" | |
# Provide support for manually triggering the workflow via GitHub. | |
workflow_dispatch: | |
jobs: | |
scala-steward: | |
name: scala-steward | |
runs-on: ubuntu-latest | |
steps: | |
# This is necessary to ensure that the most up-to-date version of | |
# REPOSITORIES.md is used. | |
- uses: actions/checkout@v2 | |
- name: Generate token | |
id: generate-token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: 209942 | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Launch Scala Steward | |
uses: scala-steward-org/scala-steward-action@v2 | |
with: | |
# used for authoring updates: | |
github-token: ${{ steps.generate-token.outputs.token }} | |
# used for listing repositories (optional, can be a different app): | |
github-app-id: 209942 | |
github-app-key: ${{ secrets.APP_PRIVATE_KEY }} |