From f0f4add22e1e58725ec2090f6bca6eba9e7ba07b Mon Sep 17 00:00:00 2001 From: Yashasvi Kundu Date: Mon, 11 Dec 2023 01:06:11 +0530 Subject: [PATCH] github workflow: enable workflow approval Allow to run GitHub workflows for Pull Requests that have the ok-to-test label. Signed-off-by: Yashasvi Kundu --- .github/workflows/gh-workflow-approve.yaml | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/gh-workflow-approve.yaml diff --git a/.github/workflows/gh-workflow-approve.yaml b/.github/workflows/gh-workflow-approve.yaml new file mode 100644 index 00000000..4e1bf0e8 --- /dev/null +++ b/.github/workflows/gh-workflow-approve.yaml @@ -0,0 +1,42 @@ +--- +name: Approve GitHub Workflows + +on: + pull_request_target: + types: + - labeled + - synchronize + branches: + - main + +jobs: + approve: + name: Approve ok-to-test + if: contains(github.event.pull_request.labels.*.name, 'ok-to-test') + runs-on: ubuntu-latest + permissions: + actions: write + steps: + - name: Update PR + uses: actions/github-script@v7.0.1 + continue-on-error: true + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + debug: ${{ secrets.ACTIONS_RUNNER_DEBUG == 'true' }} + 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