feat(workflows): add release.yml reusable workflow for Node.js package releases #616
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: Internal - Pull request - Continuous Integration | |
| on: | |
| merge_group: | |
| pull_request: | |
| branches: [main] | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| uses: ./.github/workflows/__shared-ci.yml | |
| permissions: | |
| actions: read | |
| contents: read | |
| packages: write | |
| pull-requests: write | |
| id-token: write | |
| issues: read | |
| security-events: write | |
| statuses: write | |
| secrets: inherit |