-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathaction.yml
More file actions
39 lines (38 loc) · 1.21 KB
/
action.yml
File metadata and controls
39 lines (38 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: 'run-circleci-artifacts-redirector'
description: 'Create a direct artifact link upon CircleCI completion'
branding:
icon: check
color: black
author: 'Eric Larson'
inputs:
repo-token:
description: 'The GITHUB_TOKEN secret'
required: true
artifact-path:
description: 'Path to the CircleCI artifact'
required: true
circleci-jobs:
description: 'Comma-separated list of CircleCI jobs to monitor (default is "build_docs,build,doc")'
required: false
api-token:
description: 'CircleCI API token secret, only needed if the repository is private'
required: false
job-title:
description: 'The name of the job, as it will render on the PR GUI (default is "<name of CI job> artifact)"'
required: false
domain:
description: |
The domain on which CircleCI artifacts are hosted. Defaults to
output.circle-artifacts.com.
Can, e.g., be set to use the Scientific Python CircleCI
proxy (https://github.com/scientific-python/circleci-proxy),
which addresses some routing issues.
required: false
default: 'output.circle-artifacts.com'
outputs:
url:
description: 'The full redirect URL'
on: status
runs:
using: 'node20'
main: 'dist/index.js'