-
Notifications
You must be signed in to change notification settings - Fork 41
64 lines (58 loc) · 2.31 KB
/
changelog.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: 'changelog'
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
- labeled
- unlabeled
permissions:
contents: write
jobs:
changelog:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
env:
# Getting the title directly in the run script opens an injection vulnerability.
# Using an env var for it (like this) prevents that vulnerability.
PR_TITLE: ${{ github.event.pull_request.title }}
PR_NUM: ${{ github.event.number }}
PR_BASE: ${{ github.event.pull_request.head.ref }}
PR_TARGET: ${{ github.event.pull_request.base.ref }}
steps:
- name: Checkout PR Branch
uses: actions/checkout@v4
with:
# Depending on your needs, you can use a token that will re-trigger workflows
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-made-by-this-action-do-not-trigger-new-workflow-runs
token: ${{ secrets.BOT_CPR_PAT }}
- name: Fetch Target Branch
run: git fetch origin "${PR_TARGET}:${PR_TARGET}" --depth 1
- name: Generate entry
run: |
./.changelog/dependabot-changelog.sh \
--verbose \
--pr "$PR_NUM" \
--title "$PR_TITLE" \
--head-branch "$PR_BASE" \
--target-branch "$PR_TARGET"
# All commits must be signed, import key and sign commit of updated change log.
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v6
with:
# Use a key associated with the provenanceio-bot github account.
gpg_private_key: ${{ secrets.BOT_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.BOT_GPG_PRIVATE_KEY_PW }}
git_user_signingkey: true
git_commit_gpgsign: true
# This step is required for committing the changes to your branch.
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-made-by-this-action-do-not-trigger-new-workflow-runs
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_user_name: "Provenance-io Bot"
commit_user_email: "[email protected]"
commit_options: "-S"
commit_message: "Updated Changelog"