Update iOS configuration instructions for React Native login tutorial… #303
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: Push Notify | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Webhook Notify | |
| uses: actions/github-script@v6 | |
| with: | |
| github-token: ${{ secrets.NOTIFY_PAT_TOKEN }} | |
| script: | | |
| await github.rest.repos.createDispatchEvent({ | |
| owner: '${{ secrets.NOTIFY_ORG }}', | |
| repo: '${{ secrets.NOTIFY_REPO }}', | |
| event_type: 'docs_repo_webhook' | |
| }) |