-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
54 lines (54 loc) · 1.29 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: "SUSE OBS API Fetch"
author: "Kai Kimera <[email protected]>"
description: "GitHub Action to get SUSE OBS API responses and save them to repository."
branding:
icon: "anchor"
color: "green"
inputs:
git_repo:
description: "Git Repository"
required: true
git_user:
description: "Git User"
required: true
git_email:
description: "Git E-mail"
required: true
git_token:
description: "Git Token"
required: true
api_url:
description: "OBS API URL"
required: true
default: "https://api.opensuse.org"
api_dir:
description: "OBS API Local Directory"
required: true
default: "api/obs"
api_project:
description: "OBS API Project"
required: true
api_user:
description: "OBS API User Name"
required: true
api_password:
description: "OBS API User Password"
required: true
bot_info:
description: "Bot Information"
required: true
default: "Email: [email protected]"
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.git_repo }}
- ${{ inputs.git_user }}
- ${{ inputs.git_email }}
- ${{ inputs.git_token }}
- ${{ inputs.api_url }}
- ${{ inputs.api_dir }}
- ${{ inputs.api_project }}
- ${{ inputs.api_user }}
- ${{ inputs.api_password }}
- ${{ inputs.bot_info }}