Skip to content

Commit d3df770

Browse files
committed
solve conflict
2 parents a5e7e4a + afe5b09 commit d3df770

39 files changed

+933
-612
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Manually Trigger a Force Bump PR
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
call-build-workflow:
8+
uses: openstack-k8s-operators/openstack-k8s-operators-ci/.github/workflows/force-bump-pull-request.yaml@main
9+
with:
10+
operator_name: telemetry
11+
branch_name: ${{ github.ref_name }}
12+
secrets:
13+
FORCE_BUMP_PULL_REQUEST_PAT: ${{ secrets.FORCE_BUMP_PULL_REQUEST_PAT }}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Scheduled Force Bump PR
2+
3+
on:
4+
schedule:
5+
- cron: '0 7 * * 6' # 7AM UTC Saturday
6+
7+
jobs:
8+
call-build-workflow:
9+
if: github.ref == 'refs/heads/main' && github.repository_owner == 'openstack-k8s-operators'
10+
uses: openstack-k8s-operators/openstack-k8s-operators-ci/.github/workflows/force-bump-branches.yaml@main
11+
with:
12+
operator_name: telemetry
13+
secrets:
14+
FORCE_BUMP_PULL_REQUEST_PAT: ${{ secrets.FORCE_BUMP_PULL_REQUEST_PAT }}

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,14 @@ kuttl-test-cleanup:
402402

403403
CRD_SCHEMA_CHECKER_VERSION ?= release-4.16
404404
BRANCH ?= main
405+
.PHONY: force-bump
406+
force-bump: ## Force bump operator and lib-common dependencies
407+
for dep in $$(cat go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|telemetry-operator|^replace' | awk '{print $$1}'); do \
408+
go get $$dep@$(BRANCH) ; \
409+
done
410+
for dep in $$(cat api/go.mod | grep openstack-k8s-operators | grep -vE -- 'indirect|telemetry-operator|^replace' | awk '{print $$1}'); do \
411+
cd ./api && go get $$dep@$(BRANCH) && cd .. ; \
412+
done
405413

406414
PHONY: crd-schema-check
407415
crd-schema-check: manifests

OWNERS_ALIASES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ aliases:
44
telemetry-approvers:
55
- elfiesmelfie
66
- jlarriba
7+
- mgirgisf
78
- paramite
89
- vyzigold
9-
- yadneshk
1010
ci-approvers:
1111
- lewisdenny
1212
- frenzyfriday

0 commit comments

Comments
 (0)