We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9de48e commit 551ce0eCopy full SHA for 551ce0e
2 files changed
.github/workflows/process-issue-closed.yml
@@ -16,7 +16,8 @@ jobs:
16
runs-on: ubuntu-latest
17
18
if: |
19
- github.event.issue.state == 'closed'
+ contains(github.event.issue.labels.*.name, 'gh-intermediate-class') &&
20
+ contains(github.event.issue.labels.*.name, 'provisioned')
21
22
steps:
23
- name: Get GitHub App Token
.github/workflows/process-issue-comment.yml
@@ -22,7 +22,9 @@ jobs:
startsWith(github.event.comment.body, '.add-user') ||
startsWith(github.event.comment.body, '.remove-admin') ||
24
startsWith(github.event.comment.body, '.remove-user')
25
- )
+ ) &&
26
27
28
29
30
0 commit comments