alpha
Login
or
Join now
dunkirk.sh
/
thyme
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
a fancy pants keyboard i'm making
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: remove cliff
author
Kieran Klukas
date
8 months ago
(Oct 16, 2025, 4:58 PM -0400)
commit
f9b23e1f
f9b23e1f43b0139604ba8c781f650a81d8748c9a
parent
ba35078d
ba35078d1b575f063027e98136e99a039fc2490d
-30
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
cliff.yaml
-30
.github/workflows/cliff.yaml
Reviewed
···
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