OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
symfony
/
deprecation-contracts
/
.github
/
workflows
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:44 AM
rwxr-xr-x
📄
check-subtree-split.yml
1.06 KB
08/12/2024 10:34:44 AM
rw-r--r--
Editing: check-subtree-split.yml
Close
name: Check subtree split on: pull_request_target: jobs: close-pull-request: runs-on: ubuntu-latest steps: - name: Close pull request uses: actions/github-script@v6 with: script: | if (context.repo.owner === "symfony") { github.rest.issues.createComment({ owner: "symfony", repo: context.repo.repo, issue_number: context.issue.number, body: ` Thanks for your Pull Request! We love contributions. However, you should instead open your PR on the main repository: https://github.com/symfony/symfony This repository is what we call a "subtree split": a read-only subset of that main repository. We're looking forward to your PR there! ` }); github.rest.pulls.update({ owner: "symfony", repo: context.repo.repo, pull_number: context.issue.number, state: "closed" }); }