File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 2222 github_token : ${{ secrets.GITHUB_TOKEN }}
2323 pull_number : ${{ github.event.pull_request.number }}
2424 repo_name : ${{ github.repository }}
25- custom_guidelines : |
26- - Always reference Jira ticket numbers in brackets format (example: [ENG-123] or [PLAT-11169])
27- - Always reference Jira ticket of the PR in the PR description near the top of PR
28- - Highlight any database migrations included in the changes
29- - Highlight any backfills included in the changes
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
2732
2833 - name : Remove trigger label
2934 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<<EOF' >> $GITHUB_OUTPUT
38- echo "$(jq -n --arg guidelines "$CUSTOM_GUIDELINES" '{custom_guidelines: $guidelines}')" >> $GITHUB_OUTPUT
39- echo 'EOF' >> $GITHUB_OUTPUT
37+ echo "context=$(jq -n --arg guidelines "$CUSTOM_GUIDELINES" '{custom_guidelines: $guidelines}')" >> $GITHUB_OUTPUT
4038 else
4139 echo "context={}" >> $GITHUB_OUTPUT
4240 fi
You can’t perform that action at this time.
0 commit comments