Skip to content
Compare
Choose a tag to compare
@alejandrohdezma alejandrohdezma released this 18 May 09:34
· 1352 commits to master since this release

When added, this action will launch Scala Steward on your own repository and create PRs to update your Scala dependencies using your own user:

example-pr

Usage

Create a new .github/workflows/scala-steward.yml file:

# This workflow will launch at 00:00 every Sunday
on:
  schedule:    
    - cron:  '0 0 * * 0'

jobs:
  scala-steward:
    runs-on: ubuntu-latest
    name: Launch Scala Steward
    steps:
      - name: Launch Scala Steward
        uses: alejandrohdezma/scala-steward-action@v1
        with:
          github-repository: owner/repo
          github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
          gpg-secret-key: ${{ secrets.GPG_SCALA_STEWARD }}