chore(release): Releasing feb8e5f205ad5577b2e11e56a6f94faa2d1c6116 #2492
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 |