Mk fix nightly (#8669)

This commit is contained in:
matt korwel
2025-09-17 18:40:17 -07:00
committed by GitHub
parent f3abfb8e66
commit 8f0306f499
@@ -45,10 +45,11 @@ runs:
GH_TOKEN: '${{ steps.generate_token.outputs.token }}' GH_TOKEN: '${{ steps.generate_token.outputs.token }}'
shell: 'bash' shell: 'bash'
run: | run: |
gh pr create \ set -e
PR_URL=$(gh pr create \
--title "${{ inputs.pr-title }}" \ --title "${{ inputs.pr-title }}" \
--body "${{ inputs.pr-body }}" \ --body "${{ inputs.pr-body }}" \
--base "${{ inputs.base-branch }}" \ --base "${{ inputs.base-branch }}" \
--head "${{ inputs.branch-name }}" \ --head "${{ inputs.branch-name }}" \
--fill --fill)
gh pr merge --auto --squash gh pr merge "$PR_URL" --auto --squash