Skip to content

Commit

Permalink
ci(triage): adjust tag condition
Browse files Browse the repository at this point in the history
  • Loading branch information
denolfe committed Nov 6, 2024
1 parent ae6fb4d commit 5c049f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/triage/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ async function checkValidReproduction(): Promise<void> {
)

// Tag
if (!config.actionsToPerform.includes('tag')) {
if (config.actionsToPerform.includes('tag')) {
info(`Added label: ${config.invalidLink.label}`)
await client.issues.addLabels({ ...common, labels: [config.invalidLink.label] })
} else {
Expand Down

0 comments on commit 5c049f7

Please sign in to comment.