Skip to content

Commit d5b14cb

Browse files
authored
Merge pull request #44 from SableRaf/main
Fix conditional check for `new contribution` label
2 parents 63b2d47 + 8f05286 commit d5b14cb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/issue_to_pr.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ on:
55
- opened
66
- edited
77
- reopened
8-
if: contains(github.event.issue.labels.*.name, 'new contribution')
98
permissions:
109
contents: write
1110
issues: write
1211
pull-requests: write
1312

1413
jobs:
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 }}

0 commit comments

Comments
 (0)