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
1 change: 1 addition & 0 deletions .github/workflows/create-plugin-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
steps:
- uses: actions/github-script@v9
with:
retries: 3
script: |
const body = context.payload.issue.body ?? '';
const issueNumber = context.payload.issue.number;
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
fetch-depth: 0
persist-credentials: false
# Deploy from fork PRs only runs after a maintainer explicitly adds the
# '🚀request-deploy' label (gated by the job's `if` condition above), so
# opting in to fork checkout here is an intentional, reviewed trust boundary.
allow-unsafe-pr-checkout: true
Comment on lines +71 to +75

- name: Remove built-in Yarn
run: npm uninstall -g yarn
Expand Down