cd06381563d4927c9f226603e6071125b1d56495
[ci-management.git] / .github / workflows / gerrit-verify.yaml
1 ---
2 name: Call Composed ci-management Verify
3
4 # yamllint disable-line rule:truthy
5 on:
6   workflow_dispatch:
7     inputs:
8       GERRIT_BRANCH:
9         description: "Branch that change is against"
10         required: true
11         type: string
12       GERRIT_CHANGE_ID:
13         description: "The ID for the change"
14         required: true
15         type: string
16       GERRIT_CHANGE_NUMBER:
17         description: "The Gerrit number"
18         required: true
19         type: string
20       GERRIT_CHANGE_URL:
21         description: "URL to the change"
22         required: true
23         type: string
24       GERRIT_EVENT_TYPE:
25         description: "Type of Gerrit event"
26         required: true
27         type: string
28       GERRIT_PATCHSET_NUMBER:
29         description: "The patch number for the change"
30         required: true
31         type: string
32       GERRIT_PATCHSET_REVISION:
33         description: "The revision sha"
34         required: true
35         type: string
36       GERRIT_PROJECT:
37         description: "Project in Gerrit"
38         required: true
39         type: string
40       GERRIT_REFSPEC:
41         description: "Gerrit refspec of change"
42         required: true
43         type: string
44       ENV_VARS:
45         # yamllint disable-line rule:line-length
46         description: "Pass GitHub variables to be exported as environment variables via `toJSON(vars)` or specific variables encoded in JSON format"
47         required: false
48         default: "{}"
49         type: string
50
51 jobs:
52   call-composed-ci-man-verify:
53     # yamllint disable-line rule:line-length
54     uses: lfit/releng-reusable-workflows/.github/workflows/composed-ci-management-verify.yaml@25511233afffc28b7dcb71c89ccc1b66acba2449 # v0.2.0
55     with:
56       GERRIT_BRANCH: ${{ inputs.GERRIT_BRANCH }}
57       GERRIT_CHANGE_ID: ${{ inputs.GERRIT_CHANGE_ID }}
58       GERRIT_CHANGE_NUMBER: ${{ inputs.GERRIT_CHANGE_NUMBER }}
59       GERRIT_CHANGE_URL: ${{ inputs.GERRIT_CHANGE_URL }}
60       GERRIT_EVENT_TYPE: ${{ inputs.GERRIT_EVENT_TYPE }}
61       GERRIT_PATCHSET_NUMBER: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
62       GERRIT_PATCHSET_REVISION: ${{ inputs.GERRIT_PATCHSET_REVISION }}
63       GERRIT_PROJECT: ${{ inputs.GERRIT_PROJECT }}
64       GERRIT_REFSPEC: ${{ inputs.GERRIT_REFSPEC }}
65       ENV_VARS: ${{ toJSON(vars) }}
66     secrets:
67       GERRIT_SSH_PRIVKEY: ${{ secrets.GERRIT_SSH_PRIVKEY }}
68       ENV_SECRETS: ${{ toJSON(secrets) }}
69       CLOUDS_ENV_B64: ${{ secrets.CLOUDS_ENV_B64 }}
70       CLOUDS_YAML_B64: ${{ secrets.CLOUDS_ENV_B64 }}