From 706b893e24899b4431678de1c1f0c8e77c81cd63 Mon Sep 17 00:00:00 2001 From: Olivier Vernin Date: Fri, 9 Jan 2026 08:49:56 +0100 Subject: [PATCH 1/2] fix: add missing files Signed-off-by: Olivier Vernin --- .../golang/sync_updatecli_gha_workflows.yaml | 26 ++++++++++++++ updatecli/values.d/license/agpl.yaml | 25 +++++++++++++ updatecli/values.d/license/apache2.yaml | 35 +++++++++++++++++++ updatecli/values.d/sync_default.yaml | 24 +++++++++++++ 4 files changed, 110 insertions(+) create mode 100644 updatecli/values.d/golang/sync_updatecli_gha_workflows.yaml create mode 100644 updatecli/values.d/license/agpl.yaml create mode 100644 updatecli/values.d/license/apache2.yaml create mode 100644 updatecli/values.d/sync_default.yaml diff --git a/updatecli/values.d/golang/sync_updatecli_gha_workflows.yaml b/updatecli/values.d/golang/sync_updatecli_gha_workflows.yaml new file mode 100644 index 0000000..1bba9cb --- /dev/null +++ b/updatecli/values.d/golang/sync_updatecli_gha_workflows.yaml @@ -0,0 +1,26 @@ +src: + url: "https://github.com/updatecli/udash.git" + branch: "main" + +files: + - src: .github/workflows/updatecli.yaml + dst: .github/workflows/updatecli.yaml + - src: .github/workflows/updatecli_test.yaml + dst: .github/workflows/updatecli_test.yaml + - src: .github/workflows/updatecli_update.yaml + dst: .github/workflows/updatecli_update.yaml + +scm: + enabled: true + kind: githubsearch + search: "org:updatecli language:Go archived:false" + branch: "^main$|^master$" + commitusingapi: true + user: updateclibot + limit: 0 + +title: "chore: Update Updatecli GHA workflow" + +pr: + automerge: false + title: "chore: Update Updatecli GHA workflow" diff --git a/updatecli/values.d/license/agpl.yaml b/updatecli/values.d/license/agpl.yaml new file mode 100644 index 0000000..caf1b19 --- /dev/null +++ b/updatecli/values.d/license/agpl.yaml @@ -0,0 +1,25 @@ +title: "Updatecli AGPL License" +src: + url: "https://github.com/updatecli/udash.git" + branch: "main" + +files: + - src: LICENSE + dst: LICENSE + +pr: + automerge: false + title: "chore: update AGPL License" + +scm: + enabled: true + kind: githubsearch + search: | + repo:updatecli/udash + repo:updatecli/udash-front + branch: "^main$|^master$" + commitusingapi: true + user: updateclibot + limit: 0 + +automerge: false diff --git a/updatecli/values.d/license/apache2.yaml b/updatecli/values.d/license/apache2.yaml new file mode 100644 index 0000000..2c2a60c --- /dev/null +++ b/updatecli/values.d/license/apache2.yaml @@ -0,0 +1,35 @@ +title: Update Apache 2 License + +src: + url: "https://github.com/updatecli/updatecli.git" + branch: "main" + +files: + - src: LICENSE + dst: LICENSE + +pr: + title: Update Apache 2 License + automerge: false + +scm: + enabled: true + kind: githubsearch + search: | + repo:updatecli/updatecli-action + repo:updatecli/updatecli + repo:updatecli/asdf-updatecli + repo:updatecli/releasepost-action + repo:updatecli/releasepost + repo:updatecli/plugins + repo:updatecli/policies + repo:updatecli/demo-terminal + repo:updatecli/website + repo:updatecli/homebrew-updatecli + repo:updatecli/charts + repo:updatecli/kubernetes-management + + branch: "^main$|^master$" + commitusingapi: true + user: updateclibot + limit: 0 diff --git a/updatecli/values.d/sync_default.yaml b/updatecli/values.d/sync_default.yaml new file mode 100644 index 0000000..58ad1cf --- /dev/null +++ b/updatecli/values.d/sync_default.yaml @@ -0,0 +1,24 @@ +title: Sync default repository files + +src: + url: "https://github.com/updatecli/updatecli.git" + branch: "main" + +files: + - src: CODE_OF_CONDUCT.md + dst: CODE_OF_CONDUCT.md + - src: .github/workflows/typos.yaml + dst: .github/workflows/typos.yaml + +pr: + automerge: false + title: "chore: sync default repository files" + +scm: + enabled: true + kind: githubsearch + search: "org:updatecli archived:false" + branch: "^main$|^master$" + commitusingapi: true + user: updateclibot + limit: 0 From a0a8b8a71ff1dcad81332983c9868b1f62b2dd08 Mon Sep 17 00:00:00 2001 From: Olivier Vernin Date: Fri, 9 Jan 2026 09:08:14 +0100 Subject: [PATCH 2/2] chore: update updatelci gha workflow Signed-off-by: Olivier Vernin --- updatecli-compose.yaml | 2 ++ updatecli/values.d/githubaction.yaml | 2 ++ updatecli/values.d/updatecli_gha.yaml | 1 + 3 files changed, 5 insertions(+) create mode 100644 updatecli/values.d/githubaction.yaml create mode 100644 updatecli/values.d/updatecli_gha.yaml diff --git a/updatecli-compose.yaml b/updatecli-compose.yaml index d2f2182..480d561 100644 --- a/updatecli-compose.yaml +++ b/updatecli-compose.yaml @@ -27,8 +27,10 @@ policies: policy: ghcr.io/updatecli/policies/autodiscovery/githubaction:0.3.0@sha256:3b5425da2a2a2b89bb69463f1294704c33730358c66140efb93cab14b2868b06 values: - updatecli/values.d/scm.yaml + - updatecli/values.d/githubaction.yaml - name: Handle Updatecli version in GitHub action policy: ghcr.io/updatecli/policies/updatecli/githubaction:0.7.0@sha256:a97518f118b03d2f63f45378e1961028b07c23d53db91db892893ff240fa5f4e values: - updatecli/values.d/scm.yaml + - updatecli/values.d/updatecli_gha.yaml diff --git a/updatecli/values.d/githubaction.yaml b/updatecli/values.d/githubaction.yaml new file mode 100644 index 0000000..61bff3a --- /dev/null +++ b/updatecli/values.d/githubaction.yaml @@ -0,0 +1,2 @@ +spec: + digest: true diff --git a/updatecli/values.d/updatecli_gha.yaml b/updatecli/values.d/updatecli_gha.yaml new file mode 100644 index 0000000..b5d24c3 --- /dev/null +++ b/updatecli/values.d/updatecli_gha.yaml @@ -0,0 +1 @@ +versionpattern: ">0.0.0-rc.1"