Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#2268 from chrischdi/pr-fix-gh-work…
Browse files Browse the repository at this point in the history
…flow-approval

🌱 github: add edited and reopened as triggers for the GH workflow approval
  • Loading branch information
k8s-ci-robot authored and killianmuldoon committed Aug 21, 2023
2 parents 2f371d7 + 859caa2 commit 3206710
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 158 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ updates:
schedule:
interval: "weekly"
day: "monday"
## group all dependencies with a K8s.io prefix into a single PR where possible
groups:
kubernetes:
patterns: ["k8s.io/*"]
ignore:
# Ignore controller-runtime as its upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr-gh-workflow-approve.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: PR approve GH Workflows
on:
pull_request_target:
types:
- edited
- labeled
- reopened
- synchronize

jobs:
Expand Down
17 changes: 8 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module sigs.k8s.io/cluster-api-provider-vsphere

go 1.20

replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.5.0
replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.4.1

require (
github.com/blang/semver/v4 v4.0.0
Expand All @@ -26,23 +26,22 @@ require (
golang.org/x/tools v0.12.0
gopkg.in/gcfg.v1 v1.2.3
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.27.4
k8s.io/apiextensions-apiserver v0.27.4
k8s.io/apimachinery v0.27.4
k8s.io/client-go v0.27.4
k8s.io/cluster-bootstrap v0.27.4
k8s.io/component-base v0.27.4
k8s.io/api v0.27.3
k8s.io/apiextensions-apiserver v0.27.3
k8s.io/apimachinery v0.27.3
k8s.io/client-go v0.27.3
k8s.io/cluster-bootstrap v0.27.3
k8s.io/component-base v0.27.3
k8s.io/klog/v2 v2.90.1
k8s.io/utils v0.0.0-20230209194617-a36077c30491
sigs.k8s.io/cluster-api v0.0.0-00010101000000-000000000000
sigs.k8s.io/cluster-api/test v1.5.0
sigs.k8s.io/cluster-api/test v1.4.1
sigs.k8s.io/controller-runtime v0.15.1
sigs.k8s.io/kind v0.20.0
sigs.k8s.io/yaml v1.3.0
)

require (
github.com/adrg/xdg v0.4.0 // indirect
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
github.com/go-logr/zapr v1.2.4 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
Expand Down
Loading

0 comments on commit 3206710

Please sign in to comment.