generated from actions/hello-world-docker-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
37 lines (37 loc) · 1.31 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
name: 'Update Initial Experiments'
description: 'Downloads and saves the initial experiments'
inputs:
repo-path:
description: 'The relative or absolute path to the checked out repository'
required: true
output-path:
description: 'The relative file path (from the repo path) to which the downloaded experiments should be written'
required: true
experimenter-url:
description: 'URL from which to fetch Nimbus experiments'
default: 'https://experimenter.services.mozilla.com/api/v6/experiments-first-run/'
required: false
app-name:
description: 'App name by which to filter experiments'
required: true
branch:
description: 'Remote branch to check diff against'
required: true
# package:
# description: 'Kotlin package to which the file should be written. Only required when the output language is Kotlin'
# required: false
outputs:
changed:
description: 'The number of files that were modified as part of the script'
changed-branch:
description: 'The number of files that were modified as compared to the supplied remote branch'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.repo-path }}
- ${{ inputs.output-path }}
- ${{ inputs.experimenter-url }}
- ${{ inputs.app-name }}
- ${{ inputs.branch }}
# - ${{ inputs.package }}