Skip to content

Implement the HTTP QUERY method (RFC 10008) #2

Implement the HTTP QUERY method (RFC 10008)

Implement the HTTP QUERY method (RFC 10008) #2

Workflow file for this run

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"