File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 2424 github_token : ${{ secrets.GITHUB_TOKEN }}
2525 pull_number : ${{ github.event.pull_request.number }}
2626 repo_name : ${{ github.repository }}
27- custom_guidelines : |
28- - Always reference Jira ticket numbers in brackets format (example: [ENG-123] or [PLAT-11169])
29- - Always reference Jira ticket of the PR in the PR description near the top of PR
30- - Highlight any database migrations included in the changes
31- - Highlight any backfills included in the changes
3227
3328 - name : Remove trigger label
3429 uses : actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
Original file line number Diff line number Diff line change 3434 shell : bash
3535 run : |
3636 if [ -n "$CUSTOM_GUIDELINES" ]; then
37- echo "context=$(jq -n --arg guidelines "$CUSTOM_GUIDELINES" '{custom_guidelines: $guidelines}')" >> $GITHUB_OUTPUT
37+ echo 'context<<EOF' >> $GITHUB_OUTPUT
38+ echo "$(jq -n --arg guidelines "$CUSTOM_GUIDELINES" '{custom_guidelines: $guidelines}')" >> $GITHUB_OUTPUT
39+ echo 'EOF' >> $GITHUB_OUTPUT
3840 else
3941 echo "context={}" >> $GITHUB_OUTPUT
4042 fi
You can’t perform that action at this time.
0 commit comments