diff --git a/.github/workflows/workflows-approve.yaml b/.github/workflows/workflows-approve.yaml new file mode 100644 index 0000000000..d0e8a26f27 --- /dev/null +++ b/.github/workflows/workflows-approve.yaml @@ -0,0 +1,44 @@ +name: Approve Workflows + +on: + pull_request_target: + types: + - labeled + - synchronize + branches: + - master + - release-** + +permissions: + contents: read + +jobs: + approve: + name: Approve workflows if contains ok-to-test label + if: contains(github.event.pull_request.labels.*.name, 'ok-to-test') + runs-on: ubuntu-latest + permissions: + actions: write + steps: + - name: Execute workflows + uses: actions/github-script@v7 + continue-on-error: true + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + script: | + const result = await github.rest.actions.listWorkflowRunsForRepo({ + owner: context.repo.owner, + repo: context.repo.repo, + event: "pull_request", + status: "action_required", + head_sha: context.payload.pull_request.head.sha, + per_page: 100 + }); + + for (var run of result.data.workflow_runs) { + await github.rest.actions.approveWorkflowRun({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: run.id + }); + } \ No newline at end of file