chore: update @makeswift/runtime version #16
This file contains hidden or 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
| name: Prevent invalid packages for Changesets | |
| on: | |
| pull_request: | |
| branches: | |
| - integrations/makeswift | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| validate-changesets: | |
| runs-on: ubuntu-latest | |
| name: Validate Changeset Packages | |
| steps: | |
| - name: Checkout PR code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Validate changesets only target @bigcommerce/catalyst-makeswift | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const script = require('./.github/scripts/prevent-invalid-changesets.js') | |
| await script({ core, exec }) |