Gerrit CI testing #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gerrit CI testing | |
on: | |
workflow_dispatch: | |
inputs: | |
ref: | |
type: string | |
gerrit-ref: | |
type: string | |
change: | |
type: string | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lineageos-infra/fetch-gerrit-change@main | |
with: | |
repository: LineageOS/hudson | |
gerrit-ref: ${{ inputs.gerrit-ref }} | |
ref: ${{ inputs.ref }} | |
- name: test | |
run: | | |
cat README | |
# your action runs here |