fix: proxy hasura's rest endpoints #80
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
# this workflow will run on all pull requests opened but in the context of the base of the pull request. | |
on: | |
pull_request_target: | |
types: [opened] | |
name: "assign labels" | |
jobs: | |
# labeler will label pull requests based on their title. | |
# the configuration is at .github/labeler.yml. | |
label_pull_request: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Label Pull Request | |
uses: jimschubert/labeler-action@v2 | |
with: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |