Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 2631859

Browse files
authored
chore(ci): fix the badge img url for release decorator (#255)
Signed-off-by: Tomas Coufal <tcoufal@redhat.com>
1 parent c85ae9a commit 2631859

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/decorate-gh-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
const release = await github.rest.repos.getReleaseByTag({ owner, repo, tag });
2424
2525
const WORKFLOW_URL = `https://github.com/${owner}/${repo}/actions/workflows/test.yaml`
26-
const BADGE_URL = `https://img.shields.io/github/check-runs/${owner}/${repo}/${tag}?nameFilter=test&label=Test`
26+
const BADGE_URL = `https://img.shields.io/github/check-runs/${owner}/${repo}/${tag}?nameFilter=Test%20Latest%20Release&label=Test%20Latest%20Release`
2727
const BADGE = `[![Released chart test status](${BADGE_URL})](${WORKFLOW_URL})`
2828
2929
await github.rest.repos.updateRelease({ owner, repo, release_id: release.data.id, body: BADGE + "\n\n" + release.data.body });

0 commit comments

Comments
 (0)