Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
fi

echo "Posting $STATE status to $HEAD_SHA for required checks..."
for CHECK in "ci" "lint-and-check"; do
for CHECK in "ci" "lint-and-check" "security-status"; do
gh api "repos/${{ github.repository }}/statuses/$HEAD_SHA" \
-f state="$STATE" -f context="$CHECK" \
-f description="$DESC" -f target_url="$RUN_URL"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PR_NUM="${{ steps.rp.outputs.pr }}"
PR_NUM=$(echo '${{ steps.rp.outputs.pr }}' | jq -r '.number')
echo "Enabling auto-merge for release PR #$PR_NUM"
gh pr merge "$PR_NUM" --auto --squash --repo "${{ github.repository }}"