Fix extension migration deploy confirmation prompt #11337
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths: ['packages/*/src/**'] | |
name: Changelog Reminder | |
jobs: | |
remind: | |
name: "[PR] Changelog Reminder" | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.head.repo.full_name == github.repository && !github.event.pull_request.draft }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: mskelton/changelog-reminder-action@7039cd14fb784c0a2b37f6e7a6ade2c9148c2245 # pin@v2 | |
with: | |
changelogRegex: \.changeset | |
message: | | |
We detected some changes at packages/*/src and there are no updates in the .changeset. | |
If the changes are user-facing, run "pnpm changeset add" to track your changes and include them in the next release CHANGELOG. |