-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (29 loc) · 931 Bytes
/
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
name: Changelog Generator
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
types: [closed]
release:
types: [published]
issues:
types: [closed, edited]
jobs:
changelog:
name: "Changelog Generator"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: "Generate changelog"
id: changelog
uses: charmixer/auto-changelog-action@v1.4
with:
exclude_labels: "skip ci,status: abandoned,type: duplicate,type: question,type: wontfix"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Commit and push
uses: test-room-7/action-update-file@v1.8.0
with:
commit-msg: "[skip ci] Updated CHANGELOG.md"
file-path: "CHANGELOG.md"
github-token: ${{ secrets.GITHUB_TOKEN }}