Scala Steward #502
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 20:00 every day # https://crontab.guru/#0_10_*_*_* | |
on: | |
schedule: | |
- cron: "0 20 * * *" | |
workflow_dispatch: | |
name: Scala Steward | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
jobs: | |
scala-steward: | |
runs-on: ubuntu-latest | |
name: Scala Steward | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "temurin" | |
java-version: "11" | |
- name: Install GPG key | |
uses: crazy-max/ghaction-import-gpg@v6 | |
id: import_gpg | |
with: | |
gpg_private_key: ${{ secrets.HYP_BOT_GPG_PRIVATE }} | |
passphrase: ${{ secrets.HYP_BOT_GPG_PASSWORD }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
git_config_global: true | |
git_tag_gpgsign: false | |
- name: GPG user IDs | |
run: | | |
echo "fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}" | |
echo "keyid: ${{ steps.import_gpg.outputs.keyid }}" | |
echo "name: ${{ steps.import_gpg.outputs.name }}" | |
echo "email: ${{ steps.import_gpg.outputs.email }}" | |
- name: Launch Scala Steward | |
uses: scala-steward-org/scala-steward-action@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
sign-commits: true | |
signing-key: ${{ steps.import_gpg.outputs.keyid }} | |
author-email: ${{ steps.import_gpg.outputs.email }} | |
author-name: ${{ steps.import_gpg.outputs.name }} | |
branches: main | |
repo-config: .scala-steward.conf |