tangled
alpha
login
or
join now
dunkirk.sh
/
thyme
6
fork
atom
a fancy pants keyboard i'm making
6
fork
atom
overview
issues
pulls
pipelines
chore: remove cliff
dunkirk.sh
4 months ago
f9b23e1f
ba35078d
verified
This commit was signed with the committer's
known signature
.
dunkirk.sh
SSH Key Fingerprint:
SHA256:DqcG0RXYExE26KiWo3VxJnsxswN1QNfTBvB+bdSpk80=
-30
1 changed file
expand all
collapse all
unified
split
.github
workflows
cliff.yaml
-30
.github/workflows/cliff.yaml
···
1
1
-
name: Generate Changelog
2
2
-
on:
3
3
-
release:
4
4
-
types: [published]
5
5
-
branches: [master]
6
6
-
permissions:
7
7
-
contents: write
8
8
-
env:
9
9
-
GH_TOKEN: ${{ github.token }}
10
10
-
jobs:
11
11
-
generate_changelog:
12
12
-
runs-on: ubuntu-latest
13
13
-
name: Generate Changelog
14
14
-
steps:
15
15
-
- name: Check out repository
16
16
-
uses: actions/checkout@v3
17
17
-
with:
18
18
-
fetch-depth: 0
19
19
-
20
20
-
- name: Generate a changelog
21
21
-
uses: orhun/git-cliff-action@v3
22
22
-
with:
23
23
-
config: cliff.toml
24
24
-
args: --verbose --latest
25
25
-
env:
26
26
-
OUTPUT: CHANGELOG.md
27
27
-
GITHUB_REPO: ${{ github.repository }}
28
28
-
29
29
-
- name: Add changelog to release
30
30
-
run: gh release edit ${{ github.event.release.tag_name }} -F CHANGELOG.md