mirror of
https://github.com/netdata/netdata.git
synced 2025-04-24 05:13: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
46
.github/workflows/release.yml
vendored
46
.github/workflows/release.yml
vendored
|
@ -46,38 +46,30 @@ 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
|
bugLabels: IGNOREBUGS
|
||||||
attempt_limit: 3
|
excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
|
||||||
attempt_delay: 60
|
issues: false
|
||||||
with: |
|
sinceTag: v1.10.0
|
||||||
bugLabels: IGNOREBUGS
|
token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
|
||||||
excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
|
unreleasedLabel: "**Next release**"
|
||||||
issues: false
|
verbose: true
|
||||||
sinceTag: v1.10.0
|
maxIssues: 500
|
||||||
token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
|
|
||||||
unreleasedLabel: "**Next release**"
|
|
||||||
verbose: true
|
|
||||||
maxIssues: 500
|
|
||||||
- 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
|
bugLabels: IGNOREBUGS
|
||||||
attempt_limit: 3
|
excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
|
||||||
attempt_delay: 60
|
futureRelease: ${{ github.event.inputs.version }}
|
||||||
with: |
|
issues: false
|
||||||
bugLabels: IGNOREBUGS
|
sinceTag: v1.10.0
|
||||||
excludeLabels: "stale,duplicate,question,invalid,wontfix,discussion,no changelog"
|
token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
|
||||||
futureRelease: ${{ github.event.inputs.version }}
|
unreleasedLabel: "**Next release**"
|
||||||
issues: false
|
verbose: true
|
||||||
sinceTag: v1.10.0
|
maxIssues: 500
|
||||||
token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
|
|
||||||
unreleasedLabel: "**Next release**"
|
|
||||||
verbose: true
|
|
||||||
maxIssues: 500
|
|
||||||
- name: Commit Changes
|
- name: Commit Changes
|
||||||
id: commit
|
id: commit
|
||||||
if: steps.target.outputs.run == 'true'
|
if: steps.target.outputs.run == 'true'
|
||||||
|
|
Loading…
Add table
Reference in a new issue