BbhCreate swift.ymlu 0xd8da6bf26964af9d7eed9e03e53415d37aa96045 #19
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: Auto-close PR | |
on: | |
pull_request_target: | |
types: [opened, reopened] | |
jobs: | |
close: | |
name: Run | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- run: | | |
gh pr close ${{ github.event.pull_request.number }} --comment \ | |
"At the moment we are not accepting contributions to the repository. | |
Feedback for GitHub Copilot for Xcode can be given in the [Copilot community discussions](https://github.com/orgs/community/discussions/categories/copilot)." | |
env: | |
GH_REPO: ${{ github.repository }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |