Add workflow in each repo to apply Konflux manifests on changes #1108
Workflow file for this run
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: Discover branches | |
on: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: | |
- 'main' | |
schedule: | |
- cron: "0 5 * * *" # Daily at 05:00. | |
workflow_dispatch: # Manual workflow trigger | |
jobs: | |
discover-branches: | |
name: generate-ci | |
runs-on: ubuntu-latest | |
env: | |
GOPATH: ${{ github.workspace }} | |
steps: | |
- name: Checkout openshift-knative/hack | |
uses: actions/checkout@v3 | |
with: | |
path: ./src/github.com/openshift-knative/hack | |
- name: Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./src/github.com/openshift-knative/hack/go.mod | |
- uses: tektoncd/actions/setup-tektoncd-cli@main | |
with: | |
version: latest | |
- name: Install Kustomize | |
run: GO111MODULE=on go install sigs.k8s.io/kustomize/kustomize/v5@latest | |
- name: Configure Git user | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "OpenShift Serverless" | |
- name: Discover branches | |
working-directory: ./src/github.com/openshift-knative/hack | |
run: make discover-branches ARGS="--config config/" | |
- name: Update Konflux pipelines | |
working-directory: ./src/github.com/openshift-knative/hack | |
run: make konflux-update-pipelines | |
- name: Create Discovery Pull Request | |
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref_name == 'main' | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.SERVERLESS_QE_ROBOT }} | |
path: ./src/github.com/openshift-knative/hack | |
base: main | |
branch: discover-serverless-ci | |
title: "Add new midstream branches and update pipelines" | |
commit-message: "Discover new branches and update pipelines" | |
delete-branch: true | |
body: | | |
Discover new branches and update Konflux pipelines using openshift-knative/hack. |