File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 55 - opened
66 - edited
77 - reopened
8- if : contains(github.event.issue.labels.*.name, 'new contribution')
98permissions :
109 contents : write
1110 issues : write
1211 pull-requests : write
1312
1413jobs :
1514 validate :
15+ # Only run this job if the issue has the 'new contribution' label
16+ if : contains(github.event.issue.labels.*.name, 'new contribution')
1617 runs-on : ubuntu-latest
1718 outputs :
1819 props : ${{ steps.parseProps.outputs.props }}
@@ -101,6 +102,8 @@ jobs:
101102
102103 ${{ steps.parseProps.outputs.error }}
103104 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')
104107 needs : validate
105108 env :
106109 BRANCH_NAME : issue-${{ github.event.issue.number }}
You can’t perform that action at this time.
0 commit comments