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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

# Convert changeset PR to draft to prevent accidental merging
# fusion-gh-runner-fusion-framework's image doesn't ship gh (tracked with
# infra). Non-blocking: worst case the changeset PR stays open/ready.
- name: convert Changeset PR to draft
if: steps.changesets.outputs.published == 'false' && steps.changesets.outputs['pr-number']
continue-on-error: true
run: gh pr ready ${{ steps.changesets.outputs['pr-number'] }} --undo
env:
GH_TOKEN: ${{ github.token }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,11 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

# fusion-gh-runner-fusion-framework's image doesn't ship gh (tracked with
# infra). Non-blocking: worst case the changeset PR stays open/ready.
- name: convert Changeset PR to draft
if: steps.changesets.outputs.published == 'false' && steps.changesets.outputs['pr-number']
continue-on-error: true
run: gh pr ready ${{ steps.changesets.outputs['pr-number'] }} --undo
env:
GH_TOKEN: ${{ github.token }}
Expand Down
Loading