-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
40 lines (40 loc) · 1.49 KB
/
action.yml
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
name: 'Repoman Ebuild QA'
description: 'Run repoman to find ebuild QA issues'
inputs:
repoman_args:
description: >
Additional arguments to pass after `repoman full`.
Defaults to `-dx`. Note: This parameter will undergo shell
wordsplitting and globbing.
default: '-dx'
path:
description: >
Path to cd to before starting repoman. The path is relative
to the checked out repository. If unspecified or empty,
repoman runs in the root of the repository.
default: ''
portage_version:
description: >
The portage version to download containing repoman e.g.
`2.3.80`. `latest` is the default value, which uses the latest
released version.
default: 'latest'
profile:
description: >
The gentoo profile to set before running repoman. The default
value is `latest`, which will result in using the first
profile in `profiles.desc` listed under `SYMLINK_LIB=no`
e.g. `default/linux/amd64/17.1`.
default: 'latest'
gentoo_repo:
description: >
Location to install the gentoo ebuild repository. This could
be useful if using an old portage version that expects a
different location. Default value is `/var/db/repos/gentoo`.
default: '/var/db/repos/gentoo'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
color: 'purple'
icon: 'search'