|
2 | 2 | # yaml file to the ./.chloggen/ directory. If a CHANGELOG entry is not required, |
3 | 3 | # or if performing maintenance on the Changelog, add the "Skip Changelog" label, |
4 | 4 | # or prefix the pull request title with any of the following: "[chore]", "chore", |
5 | | -# "build", "ci", "docs", "refactor", "style", "test". |
| 5 | +# "build", "ci", "refactor", "style", "test". |
6 | 6 |
|
7 | 7 | name: changelog |
8 | 8 |
|
|
38 | 38 | PR_TITLE: ${{ github.event.pull_request.title }} |
39 | 39 | PR_LABELS: ${{ toJSON(github.event.pull_request.labels.*.name) }} |
40 | 40 | run: | |
41 | | - CHLOG_EXEMPT_PREFIXES=('[chore]' 'chore' 'build' 'ci' 'docs' 'refactor' 'style' 'test') |
| 41 | + CHLOG_EXEMPT_PREFIXES=('[chore]' 'chore' 'build' 'ci' 'refactor' 'style' 'test') |
42 | 42 | for prefix in "${CHLOG_EXEMPT_PREFIXES[@]}"; do |
43 | 43 | if [[ "$PR_TITLE" == "$prefix"* ]]; then |
44 | 44 | echo "Title has exempt prefix '$prefix'; changelog not required." |
@@ -73,12 +73,12 @@ jobs: |
73 | 73 | run: | |
74 | 74 | if [[ "$(git diff --name-only "$(git merge-base origin/main "$PR_HEAD")" "$PR_HEAD" ./CHANGELOG*.md)" ]] |
75 | 75 | then |
76 | | - echo "CHANGELOG.md and CHANGELOG-API.md should not be directly modified." |
| 76 | + echo "CHANGELOG.md should not be directly modified." |
77 | 77 | echo "Please add a .yaml file to the ./.chloggen/ directory." |
78 | 78 | echo "Alternately, add either \"chore:\" or \"[chore]\" to the title of the pull request or add the \"Skip Changelog\" label if this job should be skipped." |
79 | 79 | false |
80 | 80 | else |
81 | | - echo "CHANGELOG.md and CHANGELOG-API.md were not modified." |
| 81 | + echo "CHANGELOG.md was not modified." |
82 | 82 | fi |
83 | 83 |
|
84 | 84 | - name: Ensure ./.chloggen/*.yaml addition(s) |
|
0 commit comments