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 6, 2024
1 parent 93f8185 commit 165a8e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-for-integration-result.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ jobs:
try {
await github.rest.issues.removeLabel({...issue, name: 'integration-tests: recommended'})
} catch (error) {
console.log(error.data)
console.log(error.response.status, error.response.url)
}
try {
await github.rest.issues.removeLabel({...issue, name: 'integration-tests: passing'})
} catch (error) {
console.log(error.data)
console.log(error.response.status, error.response.url)
}
try {
await github.rest.issues.removeLabel({...issue, name: 'integration-tests: failing'})
} catch (error) {
console.log(error.data)
console.log(error.response.status, error.response.url)
}
await github.rest.issues.addLabels({
Expand Down

0 comments on commit 165a8e0

Please sign in to comment.