File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 5
5
- opened
6
6
- edited
7
7
- reopened
8
- if : contains(github.event.issue.labels.*.name, 'new contribution')
9
8
permissions :
10
9
contents : write
11
10
issues : write
12
11
pull-requests : write
13
12
14
13
jobs :
15
14
validate :
15
+ # Only run this job if the issue has the 'new contribution' label
16
+ if : contains(github.event.issue.labels.*.name, 'new contribution')
16
17
runs-on : ubuntu-latest
17
18
outputs :
18
19
props : ${{ steps.parseProps.outputs.props }}
@@ -101,6 +102,8 @@ jobs:
101
102
102
103
${{ steps.parseProps.outputs.error }}
103
104
create-pr :
105
+ # Only run this job if the issue has the 'new contribution' label
106
+ if : contains(github.event.issue.labels.*.name, 'new contribution')
104
107
needs : validate
105
108
env :
106
109
BRANCH_NAME : issue-${{ github.event.issue.number }}
You can’t perform that action at this time.
0 commit comments