-
Notifications
You must be signed in to change notification settings - Fork 8
49 lines (43 loc) · 1.48 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
49
# 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@v3
- 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: scala-steward-org/scala-steward-action@v2
env:
GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }}
with:
github-token: ${{ secrets.ATALA_GITHUB_TOKEN }}
author-email: ${{ steps.import_gpg.outputs.email }}
author-name: ${{ steps.import_gpg.outputs.name }}
sign-commits: true
branches: main