chore(ci): add github action for PR's

This commit is contained in:
Naxdy 2024-04-16 00:06:48 +02:00
parent af11af357e
commit 84b5022f7d
Signed by: Naxdy
GPG key ID: CC15075846BCE91B

21
.github/workflows/no-pr.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: Close pull request
on:
pull_request_target:
types:
- opened
jobs:
close-pr:
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- run: gh pr close "$NUMBER" --comment "$COMMENT"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.number }}
COMMENT: >
Thank you for submitting your pull request.
Please note that the main repository is located at https://git.naxdy.org/NaxdyOrg/NaxGCC-HW - please submit your pull request there if you would like it to be considered for merging.