-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
62 lines (62 loc) · 2.15 KB
/
action.yml
File metadata and controls
62 lines (62 loc) · 2.15 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
56
57
58
59
60
61
62
name: 'Ferrous Actions'
author: 'Francis Russell'
description: 'GitHub Rust toolchain actions written in Rust'
inputs:
command:
description: 'The command to run'
required: true
toolchain:
description: 'The toolchain to install e.g. nightly'
required: false
components:
description: 'The components to install e.g. rustc'
required: false
profile:
description: 'A profile that selects components (minimal, default, complete)'
required: false
target:
description: 'Targets to install e.g. x86_64-unknown-linux-gnu'
required: false
default:
description: 'Whether this toolchain should be set as the default'
required: false
override:
description: 'Whether to set a Rustup override for the current directory'
required: false
args:
description: 'Additional arguments to supply to the command'
required: false
annotations:
description: 'Should GitHub annotations be generated for this command'
required: false
cache-only:
description: 'Whitespace separated list of items to cache out of indices, crates, git-repos'
required: false
min-recache-indices:
description: 'Minimum amount of time an index must be out of date before recaching it'
required: false
min-recache-crates:
description: 'Minimum amount of time a collection of cached crates must be out of date before recaching'
required: false
min-recache-git-repos:
description: 'Minimum amount of time cached Git repositories must be out of date before recaching'
use-cross:
description: 'Whether cross should be used in place of cargo'
required: false
internal-use-github-workflow:
description: 'DO NOT SET THIS INPUT - used to detect the workflow name'
default: ${{ toJSON(github.workflow) }}
internal-use-github-job:
description: 'DO NOT SET THIS INPUT - used to detect the job ID'
default: ${{ toJSON(github.job) }}
internal-use-matrix:
description: 'DO NOT SET THIS INPUT - used to identify matrix properties'
default: ${{ toJSON(matrix) }}
runs:
using: 'node20'
main: 'dist/main.js'
post: 'dist/post.js'
post-if: 'success()'
branding:
icon: 'git-pull-request'
color: 'green'