Skip to content

Commit b2a000c

Browse files
authored
Update check-for-integration-result.yml
1 parent 1965df8 commit b2a000c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/check-for-integration-result.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,12 @@ jobs:
3838
labels: [pass ? 'integration-tests: passing' : 'integration-tests: failing'],
3939
})
4040
41-
await github.rest.issues.removeLabel({
42-
...issue,
43-
name: ['integration-tests: recommended'],
44-
})
41+
try {
42+
await github.rest.issues.removeLabel({
43+
...issue,
44+
name: ['integration-tests: recommended'],
45+
})
46+
} catch (erorr) {
47+
console.log(error) // no need to fail
48+
}
4549

0 commit comments

Comments
 (0)