From 447f94c26c26ca3398ae46e6aebf00893240c08f Mon Sep 17 00:00:00 2001 From: Shaun Inman Date: Tue, 28 Feb 2023 22:07:06 -0500 Subject: [PATCH] nope, still doesn't work oh well --- .github/workflows/nopr.yaml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/nopr.yaml diff --git a/.github/workflows/nopr.yaml b/.github/workflows/nopr.yaml deleted file mode 100644 index d4ab1fb..0000000 --- a/.github/workflows/nopr.yaml +++ /dev/null @@ -1,16 +0,0 @@ -on: - pull_request: - workflow_dispatch: - - -jobs: - close: - name: Close Pull Request - runs-on: ubuntu-latest - steps: - - name: Close Pull Request - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - # Find all open PRs, and close them. - gh pr list --repo=${{ github.repository }} --state=open --json=number | jq '.[].number' | xargs gh pr close --repo=${{ github.repository }} -d