Merge pull request #265 from JarvusInnovations/contracts-core #117
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: 'Release: Prepare PR' | |
| on: | |
| push: | |
| branches: [ develop ] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| release-prepare: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: JarvusInnovations/infra-components@channels/github-actions/release-prepare/latest | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| release-branch: main | |
| # gitsheets shares one git tag space across three release tracks (v* for the | |
| # JS package, core-napi-v*, py-v*). Restrict the JS Release PR's version | |
| # computation to the v* track so a binding tag can't poison the title. | |
| release-tag-match: 'v[0-9]*' |