We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9611fd5 commit 83f4332Copy full SHA for 83f4332
.github/workflows/check-changelog.yml
@@ -17,6 +17,8 @@ jobs:
17
18
- name: Enforce New File or 'No Changelog Required' Label
19
uses: actions/github-script@v6
20
+ # don't require changelogs for draft PRs
21
+ if: github.event.pull_request.draft == false
22
with:
23
script: |
24
function shouldCheckChangelog() {
@@ -49,4 +51,4 @@ jobs:
49
51
checkChangelog();
50
52
} else {
53
core.info("PR contains the label 'No Changelog Required', skipping changelog check.");
- }
54
+ }
0 commit comments