Remove auto-retry on changelog generation. (#19908)
This appears to not play nice with the changelog generation action we use, so just remove it for now.
Austin S. Hemmelgarn committed
Mar 19, 2025 at 09:36 UTC
00c11580ec653e33fe80af5e440a168ca3c96b29
1 file changed
+19
-27
.github/workflows/release.yml
+19
-27
@@ -46,38 +46,30 @@ jobs:
46
- name: Generate Nightly Changleog
47
id: nightly-changelog
48
if: steps.target.outputs.run == 'true' && steps.target.outputs.type == 'nightly'
49
- uses: Wandalen/wretry.action@v3
49
+ uses: heinrichreimer/github-changelog-generator-action@v2.4
50
with:
51
- action: heinrichreimer/github-changelog-generator-action@v2.4
52
- attempt_limit: 3
53
- attempt_delay: 60
54
- with: |
55
- bugLabels: IGNOREBUGS
56
- excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
57
- issues: false
58
- sinceTag: v1.10.0
59
- token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
60
- unreleasedLabel: "**Next release**"
61
- verbose: true
62
- maxIssues: 500
51
+ bugLabels: IGNOREBUGS
52
+ excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
53
+ issues: false
54
+ sinceTag: v1.10.0
55
+ token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
56
+ unreleasedLabel: "**Next release**"
57
+ verbose: true
58
+ maxIssues: 500
59
- name: Generate Release Changelog
60
id: release-changelog
61
if: steps.target.outputs.run == 'true' && steps.target.outputs.type != 'nightly'
66
- uses: Wandalen/wretry.action@v3
62
+ uses: heinrichreimer/github-changelog-generator-action@v2.4
63
with:
68
- action: heinrichreimer/github-changelog-generator-action@v2.4
69
- attempt_limit: 3
70
- attempt_delay: 60
71
- with: |
72
- bugLabels: IGNOREBUGS
73
- excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
74
- futureRelease: ${{ github.event.inputs.version }}
75
- issues: false
76
- sinceTag: v1.10.0
77
- token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
78
- unreleasedLabel: "**Next release**"
79
- verbose: true
80
- maxIssues: 500
64
+ bugLabels: IGNOREBUGS
65
+ excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
66
+ futureRelease: ${{ github.event.inputs.version }}
67
+ issues: false
68
+ sinceTag: v1.10.0
69
+ token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
70
+ unreleasedLabel: "**Next release**"
71
+ verbose: true
72
+ maxIssues: 500
73
- name: Commit Changes
74
id: commit
75
if: steps.target.outputs.run == 'true'