Skip to content

Fix SkipIfOnlyChanged pattern (#775) #2618

Fix SkipIfOnlyChanged pattern (#775)

Fix SkipIfOnlyChanged pattern (#775) #2618

---
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: ./src/github.com/openshift-knative/hack/actions/setup-go
- 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
# The runner runs on Ubuntu and we need to have python3-dnf installed, so we'll use a container to run the rpm-lockfile-prototype
- name: Checkout rpm-lockfile-prototype
uses: actions/checkout@v3
with:
repository: 'konflux-ci/rpm-lockfile-prototype'
path: ./src/github.com/openshift-knative/rpm-lockfile-prototype
ref: 'v0.15.0'
- name: Install podman
run: |
sudo apt-get update
sudo apt-get -y install podman
- name: Build rpm-lockfile-prototype
working-directory: ./src/github.com/openshift-knative/rpm-lockfile-prototype
run: podman build -t localhost/rpm-lockfile-prototype:latest -f Containerfile .
- name: Update RPMs lock files
working-directory: ./src/github.com/openshift-knative/hack
run: |
container_dir=~/work
podman run --privileged \
--rm \
-v ${PWD}:${container_dir} \
localhost/rpm-lockfile-prototype:latest \
--outfile=${container_dir}/pkg/dockerfilegen/ubi8.rpms.lock.yaml \
${container_dir}/pkg/dockerfilegen/ubi8.rpms.in.yaml || exit $?
- 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.