add microdelay to interstitial for already authorized users #1115
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: pr | |
| # read-only repo token | |
| # no access to secrets | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| workflow_call: | |
| workflow_dispatch: | |
| # cancel running job if another commit comes in | |
| concurrency: | |
| group: pr-${{ github.ref }}-1 | |
| cancel-in-progress: true | |
| jobs: | |
| test_yarn: | |
| uses: ./.github/workflows/test_yarn.yml | |
| # NOTE: this is just to test | |
| bld_yarn: | |
| uses: ./.github/workflows/bld_yarn.yml | |
| # NOTE: codeql is only available on public repos or enterprise github accounts | |
| # codeql: | |
| # uses: ./.github/workflows/codeql.yml | |
| # |