Skip to content

Commit 38e44e2

Browse files
committed
Remove testing
1 parent 77da27b commit 38e44e2

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/on-demand-describe.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ jobs:
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

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ runs:
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

0 commit comments

Comments
 (0)