-
-
Notifications
You must be signed in to change notification settings - Fork 24
38 lines (36 loc) · 1.14 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
name: Changelog
on:
workflow_dispatch:
push:
paths-ignore:
- '**/*'
- '!.github/workflows/changelog.yml'
- '!src/**/*.csproj'
- '!src/**/*.cs'
branches:
- 'master'
jobs:
changelog:
if: github.ref == 'refs/heads/master' && github.repository == 'christianhelle/apiclientcodegen'
runs-on: ubuntu-latest
steps:
- name: 🛒 Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
- name: Install github_changelog_generator
run: gem install github_changelog_generator
- name: Re-generate CHANGELOG.md
run: github_changelog_generator --user christianhelle --project apiclientcodegen --token ${{ secrets.PAT }}
- name: Git commit CHANGELOG.md
run: |
git config --global user.name "Continuous Integration"
git config --global user.email "[email protected]"
git add CHANGELOG.md
git commit -m "Update changelog [skip ci]"
git push