-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (39 loc) · 1.08 KB
/
ci-changelog.yaml
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
name: Update Changelog
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
updateChangeLog:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Create Changelog file
run: |
make changelog
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GH_PAT }}
commit-message: Update report
committer: Jack Luar <[email protected]>
author: Jack Luar <[email protected]>
signoff: true
base: master
branch: update-chglog
delete-branch: true
title: Changelog Update
body: |
- Auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request
labels: |
docs
assignees: luarss