|
14 | 14 | token: ${{ secrets.GITHUB_TOKEN }}
|
15 | 15 | ref: ${{ github.event.pull_request.head.sha }}
|
16 | 16 | - uses: dangoslen/changelog-enforcer@v3
|
17 |
| - id: verify-changelog-3x |
18 | 17 | with:
|
19 | 18 | skipLabels: "autocut, skip-changelog"
|
20 |
| - changeLogPath: 'CHANGELOG-3.0.md' |
21 |
| - continue-on-error: true |
22 |
| - - uses: dangoslen/changelog-enforcer@v3 |
23 |
| - id: verify-changelog |
24 |
| - with: |
25 |
| - skipLabels: "autocut, skip-changelog" |
26 |
| - changeLogPath: 'CHANGELOG.md' |
27 |
| - continue-on-error: true |
28 |
| - - run: | |
29 |
| - # The check was possibly skipped leading to success for both the jobs |
30 |
| - has_backport_label=${{ contains(join(github.event.pull_request.labels.*.name, ', '), 'backport')}} |
31 |
| - has_breaking_label=${{ contains(join(github.event.pull_request.labels.*.name, ', '), '>breaking')}} |
32 |
| - if [[ $has_breaking_label == true && $has_backport_label == true ]]; then |
33 |
| - echo "error: Please make sure that the PR does not have a backport label associated with it when making breaking changes" |
34 |
| - exit 1 |
35 |
| - fi |
36 |
| -
|
37 |
| - if [[ ${{ steps.verify-changelog-3x.outcome }} == 'success' && ${{ steps.verify-changelog.outcome }} == 'success' ]]; then |
38 |
| - exit 0 |
39 |
| - fi |
40 |
| -
|
41 |
| - if [[ ${{ steps.verify-changelog-3x.outcome }} == 'failure' && ${{ steps.verify-changelog.outcome }} == 'failure' ]]; then |
42 |
| - echo "error: Please ensure a changelog entry exists in CHANGELOG.md or CHANGELOG-3.0.md" |
43 |
| - exit 1 |
44 |
| - fi |
45 |
| -
|
46 |
| - # Concatenates the labels and checks if the string contains "backport" |
47 |
| - if [[ ${{ steps.verify-changelog.outcome }} == 'success' && $has_backport_label == false ]]; then |
48 |
| - echo "error: Please make sure that the PR has a backport label associated with it when making an entry to the CHANGELOG.md file" |
49 |
| - exit 1 |
50 |
| - fi |
51 |
| -
|
52 |
| - if [[ ${{ steps.verify-changelog-3x.outcome }} == 'success' && $has_backport_label == true ]]; then |
53 |
| - echo "error: Please make sure that the PR does not have a backport label associated with it when making an entry to the CHANGELOG-3.0.md file" |
54 |
| - exit 1 |
55 |
| - fi |
0 commit comments