Skip to content
Merged
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
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@ jobs:
title: Version Packages
createGithubReleases: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# PAT (RELEASE_PAT) so the auto-opened Version Packages PR
# triggers downstream workflows (pkg-pr-new, CI). PRs authored
# by the default GITHUB_TOKEN do not trigger other workflows by
# GitHub design. Falls back to GITHUB_TOKEN when the secret is
# not set, so the workflow keeps working in forks / before the
# secret is configured.
GITHUB_TOKEN: ${{ secrets.RELEASE_PAT || secrets.GITHUB_TOKEN }}

- name: Publish @executor-js library packages
if: steps.changesets.outputs.hasChangesets == 'false'
Expand Down
Loading