test pr 2 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-FW - please submit your pull request there if you would like it to be considered for merging. |