Scala Steward #38
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
# Run Scala Steward with Github Actions | |
# Doc: | |
# https://github.com/scala-steward-org/scala-steward-action | |
name: Scala Steward | |
on: | |
# Disable to avoid duplicate PRs, | |
# because https://github.com/scala-steward-org/scala-steward is active again | |
# schedule: | |
# # Run every Sunday @ 12PM UTC | |
# - cron: "0 0 * * 0" | |
# Possible to execute via "Run workflow" button at the Github workflow page | |
workflow_dispatch: | |
jobs: | |
scala-steward: | |
runs-on: ubuntu-latest | |
name: Launch Scala Steward | |
steps: | |
- name: Launch Scala Steward | |
uses: scala-steward-org/scala-steward-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
github-repository: pbernet/akka_streams_tutorial |