Implement the HTTP QUERY method (RFC 10008) #2
This file contains hidden or 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: Mirror | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| redirect: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Redirect pull request to the monorepo | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| PR: ${{ github.event.pull_request.html_url }} | |
| run: | | |
| gh pr comment "$PR" --body "Thanks for contributing! This repository is a read-only mirror — development for this library happens in [\`packages/http\`](https://github.com/utopia-php/monorepo/tree/main/packages/http) in the [utopia-php monorepo](https://github.com/utopia-php/monorepo). Please open this pull request there instead." | |
| gh pr close "$PR" |