From e4cbd276fbc2a964b6538adb37077ee4155c4829 Mon Sep 17 00:00:00 2001 From: Shaun Inman <225589+shauninman@users.noreply.github.com> Date: Tue, 28 Feb 2023 22:04:46 -0500 Subject: [PATCH] Create nopr.yaml --- .github/workflows/nopr.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/nopr.yaml diff --git a/.github/workflows/nopr.yaml b/.github/workflows/nopr.yaml new file mode 100644 index 0000000..d4ab1fb --- /dev/null +++ b/.github/workflows/nopr.yaml @@ -0,0 +1,16 @@ +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