mirror of
https://github.com/netdata/netdata.git
synced 2025-05-12 04:32:08 +00:00
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.
This commit is contained in:
parent
4cc357372c
commit
00c11580ec
1 changed files with 19 additions and 27 deletions
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
|
@ -46,12 +46,8 @@ jobs:
|
||||||
- name: Generate Nightly Changleog
|
- name: Generate Nightly Changleog
|
||||||
id: nightly-changelog
|
id: nightly-changelog
|
||||||
if: steps.target.outputs.run == 'true' && steps.target.outputs.type == 'nightly'
|
if: steps.target.outputs.run == 'true' && steps.target.outputs.type == 'nightly'
|
||||||
uses: Wandalen/wretry.action@v3
|
uses: heinrichreimer/github-changelog-generator-action@v2.4
|
||||||
with:
|
with:
|
||||||
action: heinrichreimer/github-changelog-generator-action@v2.4
|
|
||||||
attempt_limit: 3
|
|
||||||
attempt_delay: 60
|
|
||||||
with: |
|
|
||||||
bugLabels: IGNOREBUGS
|
bugLabels: IGNOREBUGS
|
||||||
excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
|
excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
|
||||||
issues: false
|
issues: false
|
||||||
|
@ -63,12 +59,8 @@ jobs:
|
||||||
- name: Generate Release Changelog
|
- name: Generate Release Changelog
|
||||||
id: release-changelog
|
id: release-changelog
|
||||||
if: steps.target.outputs.run == 'true' && steps.target.outputs.type != 'nightly'
|
if: steps.target.outputs.run == 'true' && steps.target.outputs.type != 'nightly'
|
||||||
uses: Wandalen/wretry.action@v3
|
uses: heinrichreimer/github-changelog-generator-action@v2.4
|
||||||
with:
|
with:
|
||||||
action: heinrichreimer/github-changelog-generator-action@v2.4
|
|
||||||
attempt_limit: 3
|
|
||||||
attempt_delay: 60
|
|
||||||
with: |
|
|
||||||
bugLabels: IGNOREBUGS
|
bugLabels: IGNOREBUGS
|
||||||
excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
|
excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
|
||||||
futureRelease: ${{ github.event.inputs.version }}
|
futureRelease: ${{ github.event.inputs.version }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue