Skip to content

Commit

Permalink
Update check-for-integration-result.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthkp authored Nov 5, 2024
1 parent 1965df8 commit b2a000c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/check-for-integration-result.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,12 @@ jobs:
labels: [pass ? 'integration-tests: passing' : 'integration-tests: failing'],
})
await github.rest.issues.removeLabel({
...issue,
name: ['integration-tests: recommended'],
})
try {
await github.rest.issues.removeLabel({
...issue,
name: ['integration-tests: recommended'],
})
} catch (erorr) {
console.log(error) // no need to fail
}

0 comments on commit b2a000c

Please sign in to comment.