Launch Scala Steward #176
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' | |
name: Launch Scala Steward | |
jobs: | |
scala-steward: | |
runs-on: ubuntu-latest | |
name: Launch Scala Steward | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- uses: crazy-max/ghaction-import-gpg@v3 | |
id: import_gpg | |
with: | |
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
git-user-signingkey: true | |
git-commit-gpgsign: true | |
- name: Launch Scala Steward | |
uses: scala-steward-org/scala-steward-action@v2 | |
with: | |
github-token: ${{ secrets.ATALA_GITHUB_TOKEN }} | |
sign-commits: true | |
author-email: ${{ steps.import_gpg.outputs.email }} | |
author-name: ${{ steps.import_gpg.outputs.name }} | |
github-repository: input-output-hk/atala-prism | |
branches: main |