CircleCI artifacts redirector #40428
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: CircleCI artifacts redirector | |
on: [status] | |
# Restrict the permissions granted to the use of secrets.GITHUB_TOKEN in this | |
# github actions workflow: | |
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication | |
permissions: | |
statuses: write | |
jobs: | |
circleci_artifacts_redirector_job: | |
runs-on: ubuntu-latest | |
# For testing this action on a fork, remove the "github.repository =="" condition. | |
if: "github.repository == 'skrub-data/skrub' && github.event.context == 'ci/circleci: python3'" | |
name: Run CircleCI artifacts redirector | |
steps: | |
- name: GitHub Action step | |
uses: larsoner/circleci-artifacts-redirector-action@master | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
api-token: ${{ secrets.CIRCLE_CI }} | |
artifact-path: 0/doc/index.html | |
circleci-jobs: python3 | |
job-title: Check the rendered docs here! |