forked from AetherStation/AetherStation13
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (29 loc) · 886 Bytes
/
Copy pathmake_changelogs.yml
File metadata and controls
31 lines (29 loc) · 886 Bytes
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
name: Make changelogs
on:
push:
branches:
- master
jobs:
MakeCL:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 25
- name: Python setup
uses: actions/setup-python@v1
with:
python-version: "3.9"
- name: Install depends
run: |
python -m pip install --upgrade pip
pip install -r tools/changelog/requirements.txt
- name: Make CL
env:
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Use this instead if you have unprotected branches
GITHUB_TOKEN: ${{ secrets.CL_TOKEN }}
GIT_EMAIL: "109702876+as13-actions@users.noreply.github.com"
GIT_NAME: "as13-actions"
run: python tools/changelog/generate_cl.py