8b9b4600c6acbd6272609b49158f3f44f002ebf9
[ccsdk/cds.git] / .github / workflows / gerrit-verify.yaml
1 ---
2 name: Gerrit Composed Maven 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       TARGET_REPO:
45         # yamllint disable-line rule:line-length
46         description: "The target GitHub repository needing the required workflow"
47         required: false
48         default: ${{ github.repository }}
49         type: string
50
51 concurrency:
52   # yamllint disable-line rule:line-length
53   group: compose-maven-verify-${{ github.workflow }}-${{ github.event.inputs.GERRIT_CHANGE_ID || github.run_id }}
54   cancel-in-progress: true
55
56 jobs:
57   prepare:
58     runs-on: ubuntu-latest
59     steps:
60       - name: Clear votes
61         # yamllint disable-line rule:line-length
62         uses: lfit/gerrit-review-action@6ac4c2322b68c0120a9b516eb0421491ee1b3fdf  # v0.4
63         with:
64           host: ${{ vars.GERRIT_SERVER }}
65           username: ${{ vars.GERRIT_SSH_USER }}
66           key: ${{ secrets.GERRIT_SSH_PRIVKEY }}
67           known_hosts: ${{ vars.GERRIT_KNOWN_HOSTS }}
68           gerrit-change-number: ${{ inputs.GERRIT_CHANGE_NUMBER }}
69           gerrit-patchset-number: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
70           vote-type: clear
71           comment-only: true
72       - name: Allow replication
73         run: sleep 10s
74
75   maven-verify:
76     needs: prepare
77     # use compose-jjb-verify from the v0.4 series of releng-reusable-workflows
78     # yamllint disable-line rule:line-length
79     uses: lfit/releng-reusable-workflows/.github/workflows/gerrit-compose-required-maven-verify.yaml@main
80     with:
81       GERRIT_BRANCH: ${{ inputs.GERRIT_BRANCH }}
82       GERRIT_CHANGE_ID: ${{ inputs.GERRIT_CHANGE_ID }}
83       GERRIT_CHANGE_NUMBER: ${{ inputs.GERRIT_CHANGE_NUMBER }}
84       GERRIT_CHANGE_URL: ${{ inputs.GERRIT_CHANGE_URL }}
85       GERRIT_EVENT_TYPE: ${{ inputs.GERRIT_EVENT_TYPE }}
86       GERRIT_PATCHSET_NUMBER: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
87       GERRIT_PATCHSET_REVISION: ${{ inputs.GERRIT_PATCHSET_REVISION }}
88       GERRIT_PROJECT: ${{ inputs.GERRIT_PROJECT }}
89       GERRIT_REFSPEC: ${{ inputs.GERRIT_REFSPEC }}
90       JDK_VERSION: ${{ inputs.JDK_VERSION }}
91       MVN_VERSION: ${{ inputs.MVN_VERSION }}
92       TARGET_REPO: ${{ inputs.TARGET_REPO }}
93
94   vote:
95     if: ${{ always() }}
96     # yamllint enable rule:line-length
97     needs: [prepare, maven-verify]
98     runs-on: ubuntu-latest
99     steps:
100       - name: Get conclusion
101         # yamllint disable-line rule:line-length
102         uses: technote-space/workflow-conclusion-action@45ce8e0eb155657ab8ccf346ade734257fd196a5  # v3.0.3
103       - name: Set vote
104         # yamllint disable-line rule:line-length
105         uses: lfit/gerrit-review-action@6ac4c2322b68c0120a9b516eb0421491ee1b3fdf  # v0.4
106         with:
107           host: ${{ vars.GERRIT_SERVER }}
108           username: ${{ vars.GERRIT_SSH_USER }}
109           key: ${{ secrets.GERRIT_SSH_PRIVKEY }}
110           known_hosts: ${{ vars.GERRIT_KNOWN_HOSTS }}
111           gerrit-change-number: ${{ inputs.GERRIT_CHANGE_NUMBER }}
112           gerrit-patchset-number: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
113           vote-type: ${{ env.WORKFLOW_CONCLUSION }}
114           comment-only: true