We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4a51d3 commit 4d0221fCopy full SHA for 4d0221f
2 files changed
.github/workflows/test-robot-label.yaml
@@ -15,7 +15,8 @@ permissions:
15
16
jobs:
17
test-robot-label:
18
- if: github.event.label.name == 'test-robot-done'
+ if: github.event.action == 'labeled' &&
19
+ github.event.label.name == inputs['label-test-robot-done']
20
name: Test Robot Label
21
runs-on: ubuntu-latest
22
steps:
.github/workflows/test-robot-unlabel.yaml
@@ -20,7 +20,7 @@ permissions:
test-robot-unlabel:
23
+ if: github.event.label.name == inputs['label-test-robot-done']
24
name: Test Robot Unlabel
25
26
0 commit comments