Docs: broken links to react bindings API and #158
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
name: Enforce label | |
permissions: | |
actions: read | |
checks: write | |
pull-requests: read | |
statuses: write | |
on: | |
pull_request: | |
types: [opened, reopened, labeled, unlabeled, synchronize] | |
branches: [main] | |
jobs: | |
build: | |
environment: auto deploy | |
name: 'Enforce label' | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest # TODO: this should probably run on multiple OSes | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/setup | |
- uses: 8BitJonny/[email protected] | |
id: PR | |
- run: yarn auto pr-check --pr $PR --url "$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" | |
env: | |
PR: ${{ steps.PR.outputs.number }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |