Skip to content

Commit

Permalink
Minor logical Change
Browse files Browse the repository at this point in the history
  • Loading branch information
Advaitgaur004 authored Oct 23, 2024
1 parent af743b2 commit dfa560c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/prevent-bugbounty-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
});
// Check if the issue has the 'bugbounty' label
if (!issue.data.labels.some(label => label.name.toLowerCase() === 'bugbounty')) {
if (issue.data.labels.some(label => label.name.toLowerCase() === 'bugbounty')) {
await github.rest.issues.addLabels({
owner: 'devlup-labs',
repo: 'dev-playground',
Expand Down

0 comments on commit dfa560c

Please sign in to comment.