-
Notifications
You must be signed in to change notification settings - Fork 9
42 lines (39 loc) · 1.2 KB
/
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
name: Changelog
on:
pull_request:
types: [opened, synchronize, labeled, unlabeled]
branches: [master]
paths:
- "src/**"
jobs:
get-label:
runs-on: ubuntu-latest
name: get label
outputs:
labels: "${{ steps.pr-labels.outputs.labels }}"
steps:
- name: Get PR labels
id: pr-labels
uses: joerick/pr-labels-action@e61c643fe47e53d3495405cc9f441b5da06ab1e9
check-changelog-updates:
if: "${{ needs.get-label.outputs.labels != ' skip-changelog ' }}"
runs-on: ubuntu-latest
needs: get-label
name: Check changelog update
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
- name: Check changelog file
run: |
changed_files_string="${{ steps.changed-files.outputs.all_changed_files }}"
read -ra changed_files_array <<< "$changed_files_string"
chmod +x scripts/changelog_check.sh
for changed_file in "${changed_files_array[@]}"; do
if [[ "$changed_file" == *"/template."* ]]; then
scripts/changelog_check.sh $(dirname $changed_file)
fi
done