-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (44 loc) · 1.4 KB
/
parser.yml
File metadata and controls
52 lines (44 loc) · 1.4 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
name: Gitflow-Py Parser
run-name: Activated by ${{ github.actor }}
on:
workflow_call:
inputs:
image_to_use:
required: false
default: ghcr.io/ruiheesi/pyscworkflow:latest
type: string
verions_to_use:
required: false
default: main
type: string
artifact_rid_production:
required: false
type: string
default: 'ri.artifacts.main.repository.17a52d33-f600-4a19-8969-71d0601af346'
artifact_rid_development:
required: false
type: string
default: 'ri.artifacts.main.repository.00852eef-c60b-4b78-8f14-cd48cdfde051'
test:
required: false
default: No
type: string
secrets:
PAT:
required: false
NIDAP_TOKEN_PRODUCTION:
required: false
NIDAP_TOKEN_DEVELOPMENT:
required: false
jobs:
Activate_Action_Pack:
if: ${{ inputs.verions_to_use == 'main' }}
uses: fnlcr-dmap/gitflow-py/.github/workflows/action_pack_verion_main.yml@main
with:
image_to_use: "${{ inputs.image_to_use }}"
artifact_rid_production: "${{ inputs.artifact_rid_production }}"
artifact_rid_development: "${{ inputs.artifact_rid_development }}"
test: "${{ inputs.test }}"
secrets:
NIDAP_TOKEN_PRODUCTION: ${{ secrets.NIDAP_TOKEN_PRODUCTION }}
NIDAP_TOKEN_DEVELOPMENT: ${{ secrets.NIDAP_TOKEN_DEVELOPMENT }}