diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-10-16 07:53:11 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-10-16 07:53:11 +0000 |
commit | d3591c4a264fc27072f2933389f1be1650643e93 (patch) | |
tree | 57057f1f7f3f85bfe6671267657e21988d9bb30c | |
parent | b564ad57e9a002b2661564f9d438955247720d0c (diff) | |
download | vyos-build-d3591c4a264fc27072f2933389f1be1650643e93.tar.gz vyos-build-d3591c4a264fc27072f2933389f1be1650643e93.zip |
T6781: Auto-close pull requests for circinus
-rw-r--r-- | .github/workflows/pr-auto-close.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/pr-auto-close.yml b/.github/workflows/pr-auto-close.yml new file mode 100644 index 00000000..40e13a25 --- /dev/null +++ b/.github/workflows/pr-auto-close.yml @@ -0,0 +1,18 @@ +name: Auto-Close Pull Requests Circinus + +on: + pull_request_target: + types: + - opened + branches: + - circinus + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: superbrothers/close-pull-request@v3 + with: + # Optional. Post a issue comment just before closing a pull request. + comment: "Pull requests to this branch are not accepted and have been closed automatically." + github_token: ${{ secrets.PAT }} |