9105675591
POC GitOps Dispatch / echo (push) Successful in 13s
CI Feature / Load example-gitea-env.conf to pipeline env (push) Successful in 33s
unit-tests Bats test report
CI Feature / Bats tests (push) Successful in 1m34s
acc-tests Cucumber test report
CI Feature / Cucumber tests (push) Successful in 1m48s
CI Feature / Report Summary (push) Successful in 5s
21 lines
410 B
YAML
21 lines
410 B
YAML
name: POC GitOps Dispatch
|
|
run-name: "POC (${{ inputs.dispatch_id }})"
|
|
on:
|
|
push:
|
|
branches:
|
|
- feature/gitops
|
|
workflow_dispatch:
|
|
inputs:
|
|
dispatch_id:
|
|
required: true
|
|
type: string
|
|
type:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
echo:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "POC dispatch_id=${{ inputs.dispatch_id }} type=${{ inputs.type }}"
|