We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 843132d commit 60ed769Copy full SHA for 60ed769
.github/workflows/add_member.yml
@@ -70,8 +70,9 @@ jobs:
70
71
- name: Check if user wants to become a designer
72
id: check_designer
73
- run: |
74
- if gh issue view ${{ env.ISSUE_NUMBER }} --json body | jq -e '.body | contains("[x] Do you wish to join the designers team?")'; then
+ run: |
+ ADD_TO_DESIGNERS=$(gh issue view ${{ env.ISSUE_NUMBER }} --json body | jq -e '.body | contains("[x] Do you wish to join the designers team?")')
75
+ if [ "$ADD_TO_DESIGNERS" = "true" ]; then
76
python scripts/add_member.py ${{ env.USERNAME }} designers
77
else
78
echo "User does not want to join the designers team."
0 commit comments