CI: Update Gerrit ci-management verify workflow
[ci-management.git] / .github / workflows / gerrit-ci-management-verify.yaml
1 ---
2 name: Call Gerrit 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
45 jobs:
46   call-gerrit-ci-management-verify:
47     # yamllint disable-line rule:line-length
48     uses: lfit/releng-reusable-workflows/.github/workflows/gerrit-ci-management-verify.yaml@4763193f992b39532dd373a268ed6d6fe11f8b72
49     with:
50       gerrit-branch: ${{ inputs.GERRIT_BRANCH }}
51       gerrit-change-id: ${{ inputs.GERRIT_CHANGE_ID }}
52       gerrit-change-number: ${{ inputs.GERRIT_CHANGE_NUMBER }}
53       gerrit-change-url: ${{ inputs.GERRIT_CHANGE_URL }}
54       gerrit-event-type: ${{ inputs.GERRIT_EVENT_TYPE }}
55       gerrit-patchset-number: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
56       gerrit-patchset-revision: ${{ inputs.GERRIT_PATCHSET_REVISION }}
57       gerrit-project: ${{ inputs.GERRIT_PROJECT }}
58       gerrit-refspec: ${{ inputs.GERRIT_REFSPEC }}
59       host: ${{ vars.GERRIT_SERVER }}
60       username: ${{ vars.GERRIT_SSH_USER }}
61       known_hosts: ${{ vars.GERRIT_KNOWN_HOSTS }}
62     secrets:
63       key: ${{ secrets.GERRIT_SSH_PRIVKEY }}