-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (42 loc) · 1.55 KB
/
scala-steward.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This workflow will launch at 20:00 every day # https://crontab.guru/#0_10_*_*_*
on:
schedule:
- cron: "0 20 * * *"
workflow_dispatch:
name: Scala Steward
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: Import GPG key
id: import_gpg
#https://github.com/crazy-max/ghaction-import-gpg
uses: crazy-max/ghaction-import-gpg@v4
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
git_config_global: true
git_user_signingkey: true
git_commit_gpgsign: true
- 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: FabioPinheiro/scala-steward-action@b2d3539f5a99aa69a62581898e187c36fa33b742
uses: scala-steward-org/scala-steward-action@v2 # needs v2.61.0
with:
github-token: ${{ secrets.REPO_GITHUB_TOKEN }}
author-email: ${{ steps.import_gpg.outputs.email }}
author-name: ${{ steps.import_gpg.outputs.name }}
sign-commits: true
signing-key: ${{ secrets.GPG_SIGNING_KEY_ID }}