Skip to content

Commit b5a9f8b

Browse files
Fix gh command in add_member.yml
I noticed that this action has been failing for new members. It looked like an easy fix. Error message: --label: command not found Solution: Add the missing line break character `\` to the `gh pr create` script block To test, I suggest we run the action again on my membership request.
1 parent 18ac599 commit b5a9f8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/add_member.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
--title "Add ${{ env.USERNAME }} to django-commons" \
8686
--body "Fix #${{ env.ISSUE_NUMBER }}" \
8787
--base main \
88-
--head ${{ env.BRANCH_NAME }}
88+
--head ${{ env.BRANCH_NAME }} \
8989
--label "New member"
9090
env:
9191
GITHUB_TOKEN: ${{ secrets.TERRAFORM_MANAGEMENT_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)