chore(release): Elect version 63e7f8649be744b7ea75bd5571189a2c04ac49b… #2472
Workflow file for this run
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: Required checks | |
| on: | |
| push: { } | |
| concurrency: | |
| group: ${{ github.workflow }}-required-checks-${{ github.event.push.after || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| wait-for-other-jobs: | |
| name: Wait for required jobs to complete or be skipped | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Wait for running jobs | |
| uses: lewagon/wait-on-check-action@ccfb013c15c8afb7bf2b7c028fb74dc5a068cccc # v1.3.4 | |
| with: | |
| ref: ${{ github.ref }} | |
| running-workflow-name: Wait for required jobs to complete or be skipped | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| wait-interval: 5 | |
| allowed-conclusions: success,skipped,neutral |