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 9df9bea commit eca6d53Copy full SHA for eca6d53
.github/workflows/draft-release-notes.yml
@@ -18,6 +18,8 @@ on:
18
19
jobs:
20
draft-release-notes:
21
+ if: ${{ github.event_name == 'push' }}
22
+
23
permissions:
24
# write permission is required to create a github release
25
contents: write
@@ -33,7 +35,7 @@ jobs:
33
35
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
36
37
# Test the Release Drafter config on PRs without modifying the real draft release
- draft-release-notes-test:
38
+ draft-release-notes-dry-run:
39
if: ${{ github.event_name == 'pull_request' }}
40
41
@@ -47,6 +49,6 @@ jobs:
47
49
uses: release-drafter/release-drafter@v6
48
50
with:
51
disable-autolabeler: true
- dry-run: true
52
+ disable-releaser: true # prevents creating/updating the draft
53
env:
54
0 commit comments