We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1965df8 commit b2a000cCopy full SHA for b2a000c
.github/workflows/check-for-integration-result.yml
@@ -38,8 +38,12 @@ jobs:
38
labels: [pass ? 'integration-tests: passing' : 'integration-tests: failing'],
39
})
40
41
- await github.rest.issues.removeLabel({
42
- ...issue,
43
- name: ['integration-tests: recommended'],
44
- })
+ try {
+ await github.rest.issues.removeLabel({
+ ...issue,
+ name: ['integration-tests: recommended'],
45
+ })
46
+ } catch (erorr) {
47
+ console.log(error) // no need to fail
48
+ }
49
0 commit comments