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