Skip to content

verify

verify #36

---
name: verify
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
inputs:
GERRIT_BRANCH:
description: 'Branch that change is against'
required: true
type: string
GERRIT_CHANGE_ID:
description: 'The ID for the change'
required: true
type: string
GERRIT_CHANGE_NUMBER:
description: 'The Gerrit number'
required: true
type: string
GERRIT_CHANGE_URL:
description: 'URL to the change'
required: true
type: string
GERRIT_EVENT_TYPE:
description: 'Type of Gerrit event'
required: true
type: string
GERRIT_PATCHSET_NUMBER:
description: 'The patch number for the change'
required: true
type: string
GERRIT_PATCHSET_REVISION:
description: 'The revision sha'
required: true
type: string
GERRIT_PROJECT:
description: 'Project in Gerrit'
required: true
type: string
GERRIT_REFSPEC:
description: 'Gerrit refspec of change'
required: true
type: string
concurrency:
group: ${{ github.event.inputs.GERRIT_CHANGE_ID || github.run_id }}
cancel-in-progress: true
jobs:
test-job:
runs-on: ubuntu-latest
steps:
- uses: lfit/gerrit-review-action@main
with:
host: ${{ vars.LFIT_GERRIT_SERVER }}
username: ${{ vars.LFIT_GERRIT_SSH_USER }}
key: ${{ secrets.LFIT_GERRIT_SSH_PRIVKEY_NP }}
known_hosts: ${{ vars.LFIT_GERRIT_KNOWN_HOSTS }}
gerrit-change-number: ${{ inputs.GERRIT_CHANGE_NUMBER }}
gerrit-patchset-number: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
vote-type: clear
- uses: lfit/checkout-gerrit-change-action@main
with:
gerrit-refspec: ${{ inputs.GERRIT_REFSPEC }}
- name: change-log
run: git log -n1
shell: bash
- name: change-graph
# yamllint disable-line rule:line-length
run: git log --graph --pretty=format:'%C(auto,yellow)%h%C(auto,magenta)% G? %C(auto,cyan)%>(13,trunc)%ad %C(auto,green)%<(14,trunc)%aN %C(auto,reset)%s%C(auto)% gD% d'
shell: bash
gpg:
runs-on: ubuntu-latest
needs: test-job
steps:
- name: gpg version
run: |
gpg --version
which gpg
which gpgv
which gpg-agent
which dirmngr
which gpgconf
- name: git version
run: |
git --version
vote:
runs-on: ubuntu-latest
needs: [test-job, gpg]
if: ${{ always() }}
steps:
- name: Try new conclusion getter
id: get_conclusion
uses: im-open/[email protected]
with:
workflow_id: ${{ github.run_id }}
branch: ${{ inputs.GERRIT_BRANCH }}
- name: Get overall conclusion
uses: technote-space/workflow-conclusion-action@v3
- name: Set vote
uses: lfit/gerrit-review-action@main
with:
host: gerrit.linuxfoundation.org
username: ${{ vars.LFIT_GERRIT_SSH_USER }}
key: ${{ secrets.LFIT_GERRIT_SSH_PRIVKEY_NP }}
known_hosts: ${{ vars.LFIT_GERRIT_KNOWN_HOSTS }}
gerrit-change-number: ${{ inputs.GERRIT_CHANGE_NUMBER }}
gerrit-patchset-number: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
vote-type: ${{ steps.get_conclusion.workflow_conclusion }}