-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
55 lines (45 loc) · 1.34 KB
/
Copy pathaction.yml
File metadata and controls
55 lines (45 loc) · 1.34 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright 2023, Kry10 Limited
# SPDX-License-Identifier: BSD-2-Clause
name: Await workflow artifacts
description: |
Wait for artifacts to become available in another workflow run,
and optionally download them.
inputs:
repo:
required: true
description: |
The GitHub repository containing the artifacts, as `owner/repo-name`.
run-id:
required: true
description: |
The workflow run ID containing the artifacts.
artifact-names:
required: true
description: |
A space-separated list of artifact names to wait for.
Artifact names should only contain sensible characters,
and definitely no whitespace.
timeout:
required: true
default: 600
description: |
The number of seconds to wait for artifacts to become available.
token:
required: true
description: |
A GitHub authentication token with appropriate access to read
the relevant artifacts.
download-dir:
required: false
description: |
An optional directory name. If provided, artifacts will be
downloaded to this directory. Each artifact will be unpacked
into a subdirectory named after the artifact.
outputs:
artifact-ids:
description: |
A space-separated list of artifact IDs, in the same order
as the artifact-names input.
runs:
using: node16
main: index.js