Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork11.9k
CircleCI artifact redirector#258859
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
| # To enable this workflow on a fork, comment out: | |
| # | |
| # if: github.repository == 'numpy/numpy' | |
| name:CircleCI artifact redirector | |
| on:[status] | |
| permissions:read-all | |
| jobs: | |
| circleci_artifacts_redirector_job: | |
| runs-on:ubuntu-latest | |
| if:"github.repository == 'numpy/numpy' && !contains(github.event.head_commit.message, '[circle skip]') && !contains(github.event.head_commit.message, '[skip circle]') && github.event.context == 'ci/circleci: build'" | |
| name:Run CircleCI artifacts redirector | |
| permissions: | |
| statuses:write | |
| steps: | |
| -name:GitHub Action step | |
| uses:larsoner/circleci-artifacts-redirector-action@5d358ff96e96429a5c64a969bb4a574555439f4f# master | |
| with: | |
| repo-token:${{ secrets.GITHUB_TOKEN }} | |
| api-token:${{ secrets.CIRCLE_TOKEN }} | |
| artifact-path:0/doc/build/html/index.html | |
| circleci-jobs:build |