chore(main): Release transformation-azure-compliance-premium v0.8.10 #1771
This file contains 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: Wait for all required workflows to pass | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
wait_for_required_workflows: | |
timeout-minutes: 60 | |
name: wait-for-required-workflows | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
- uses: actions/github-script@v7 | |
env: | |
FILES: ${{ steps.changed-files.outputs.all_modified_files }} | |
with: | |
script: | | |
const script = require('./scripts/workflows/wait_for_required_workflows.js') | |
await script({github, context}) |