Scala Steward #25
This file contains hidden or 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: | |
| # Run every Monday at 00:00 UTC | |
| - cron: '0 0 * * 1' | |
| workflow_dispatch: # Allow manual triggers | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| scala-steward: | |
| runs-on: ubuntu-latest | |
| name: Update dependencies with Scala Steward | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Scala Steward | |
| uses: scala-steward-org/scala-steward-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| author-email: 41898282+github-actions[bot]@users.noreply.github.com | |
| author-name: github-actions[bot] | |
| # Respect .scala-steward.conf in repo root (will be available after checkout) | |
| repos-file: .scala-steward.conf | |
| # Sign commits (optional) | |
| sign-commits: false | |
| # Ignore SNAPSHOT versions | |
| ignore-opts-files: false | |
| # Cache dependencies for faster runs | |
| cache-ttl: 24h |