chore(ci): update github workflows to latest version and pin to sha #11
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: Create releases and tags | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| unreleased-prs-metadata: | |
| name: Get list of pending release pull requests | |
| permissions: | |
| pull-requests: read | |
| contents: read | |
| uses: equinor/radix-reusable-workflows/.github/workflows/template-unreleased-pr-metadata.yml@bbbf79dd34776ca9e9a4dc4fcf6dc643953f37e8 # v1.1.0 | |
| release-pull-request: | |
| name: Release pull request | |
| needs: | |
| - unreleased-prs-metadata | |
| if: needs.unreleased-prs-metadata.outputs.unreleased-pull-request-count > 0 | |
| strategy: | |
| matrix: | |
| pull-request-number: ${{ fromJson(needs.unreleased-prs-metadata.outputs.unreleased-pull-requests) }} | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| issues: write | |
| uses: equinor/radix-reusable-workflows/.github/workflows/template-create-release-from-pr.yml@bbbf79dd34776ca9e9a4dc4fcf6dc643953f37e8 # v1.1.0 | |
| with: | |
| pull-request-number: ${{ matrix.pull-request-number }} | |
| use-github-app-token: true | |
| github-app-id: ${{ vars.GH_APP_ID }} | |
| secrets: | |
| github-app-private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} | |