From 94557c2bcc25f2e6de174638407c119cac4f8962 Mon Sep 17 00:00:00 2001 From: Dave Protasowski Date: Sun, 3 May 2026 19:37:36 -0400 Subject: [PATCH] drop unnecessary workflow --- .github/workflows/pr-gh-workflow-approve.yaml | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/pr-gh-workflow-approve.yaml diff --git a/.github/workflows/pr-gh-workflow-approve.yaml b/.github/workflows/pr-gh-workflow-approve.yaml deleted file mode 100644 index 23783620737f..000000000000 --- a/.github/workflows/pr-gh-workflow-approve.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: PR approve GH Workflows - -on: - pull_request_target: - types: - - edited - - labeled - - reopened - - synchronize - -permissions: {} - -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@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 - 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 - }); - }