Skip to content

Commit 7aaf8f8

Browse files
committed
Don't trigger on provisioned issues
1 parent f10c6cc commit 7aaf8f8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/process-issue.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
name: Process Issue Open/Edit
1717
runs-on: ubuntu-latest
1818

19-
if: contains(github.event.issue.labels.*.name, 'gh-intermediate-class')
19+
if: |
20+
contains(github.event.issue.labels.*.name, 'gh-intermediate-class') &&
21+
contains(github.event.issue.labels.*.name, 'provisioned') == false
2022
2123
steps:
2224
- name: Checkout

0 commit comments

Comments
 (0)