-
-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (60 loc) · 2.95 KB
/
update-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
65
66
67
68
69
70
71
# .github/workflows/update-changelog.yaml
name: "Update Changelog"
on:
release:
types: [released]
jobs:
update:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# updated CHANGELOG back to the repository.
# https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# Fetch entire history of repository to ensure release date can be
# extracted from commit of the given tag.
fetch-depth: 0
# Checkout target branch of this release. Ensures that the CHANGELOG
# is not out of date.
ref: ${{ github.event.release.target_commitish }}
- name: Extract release date from git tag
id: release_date
run: |
echo "date=$(git log -1 --date=short --format=%ad '${{ github.event.release.tag_name }}')" >> $GITHUB_OUTPUT;
- name: Update Changelog
uses: stefanzweifel/changelog-updater-action@v1
with:
# Pass extracted release date, release notes and version to the Action.
release-date: ${{ steps.release_date.outputs.date }}
release-notes: ${{ github.event.release.body }}
latest-version: ${{ github.event.release.tag_name }}
compare-url-target-revision: ${{ github.event.release.target_commitish }}
# Optional
# If your project keeps separate branches for major releases, and you want to point the compare URL
# in the "Unreleased"-heading to the corresponding major release branch (eg. `2.x`), then enable the option
# below.
# `compare-url-target-revision` will change how the compare URL is composed and will replace
# `v2.0.1...HEAD` with `v2.0.1...2.x`.
# WARNING: When you select `main` when creating a new release, the value `refs/heads/main`
# is passed to the Action which will generate an invalid compare URL.
# compare-url-target-revision: ${{ github.event.release.target_commitish }}
- name: "release_compare_url"
# https://github.com/org/repo/compare/v1.0.0...v1.1.0
run: "echo ${{ steps.changelog-updater.outputs.release_compare_url }}"
- name: "release_url_fragment"
# #v100---2021-02-01
run: "echo ${{ steps.changelog-updater.outputs.release_url_fragment }}"
- name: "unreleased_compare_url"
# https://github.com/org/repo/compare/v1.0.0...HEAD
run: "echo ${{ steps.changelog-updater.outputs.unreleased_compare_url }}"
- name: Commit updated CHANGELOG
uses: stefanzweifel/git-auto-commit-action@v5
with:
# Push updated CHANGELOG to release target branch.
branch: ${{ github.event.release.target_commitish }}
commit_message: Update CHANGELOG
file_pattern: CHANGELOG.md