Merge pull request #1839 from vmware-tanzu/update_ci_url

Update CI URL, increase lint timeout, disable some dependabot updates
This commit is contained in:
Ryan Richard
2024-01-19 12:58:22 -08:00
committed by GitHub
3 changed files with 20 additions and 16 deletions

View File

@@ -2,11 +2,6 @@
version: 2 version: 2
updates: updates:
- package-ecosystem: "gomod"
open-pull-requests-limit: 100
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "gomod" - package-ecosystem: "gomod"
open-pull-requests-limit: 2 open-pull-requests-limit: 2
@@ -14,12 +9,21 @@ updates:
schedule: schedule:
interval: "daily" interval: "daily"
- package-ecosystem: "docker" # Our own CI job is responsible for updating this go.mod file now.
directory: "/" # - package-ecosystem: "gomod"
schedule: # open-pull-requests-limit: 100
interval: "daily" # directory: "/"
# schedule:
# interval: "daily"
- package-ecosystem: "docker" # Our own CI job is responsible for updating this Docker file now.
directory: "/hack" # this should keep the FIPS dockerfile updated per https://github.com/dependabot/feedback/issues/145#issuecomment-414738498 # - package-ecosystem: "docker"
schedule: # directory: "/"
interval: "daily" # schedule:
# interval: "daily"
# Our own CI job is responsible for updating this Docker file now.
# - package-ecosystem: "docker"
# directory: "/hack" # this should keep the FIPS dockerfile updated per https://github.com/dependabot/feedback/issues/145#issuecomment-414738498
# schedule:
# interval: "daily"

View File

@@ -154,7 +154,7 @@ To destroy the local Kubernetes cluster, run `./hack/kind-down.sh`.
### Observing Tests on the Continuous Integration Environment ### Observing Tests on the Continuous Integration Environment
[CI](https://hush-house.pivotal.io/teams/tanzu-user-auth/pipelines/pinniped-pull-requests) [CI](https://ci.pinniped.dev/teams/main/pipelines/pull-requests)
will not be triggered on a pull request until the pull request is reviewed and will not be triggered on a pull request until the pull request is reviewed and
approved for CI by a project [maintainer](MAINTAINERS.md). Once CI is triggered, approved for CI by a project [maintainer](MAINTAINERS.md). Once CI is triggered,
the progress and results will appear on the Github page for that the progress and results will appear on the Github page for that

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Copyright 2020-2023 the Pinniped contributors. All Rights Reserved. # Copyright 2020-2024 the Pinniped contributors. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
set -euo pipefail set -euo pipefail
@@ -13,7 +13,7 @@ function tidy_cmd() {
} }
function lint_cmd() { function lint_cmd() {
echo "golangci-lint run --modules-download-mode=readonly --timeout=20m" echo "golangci-lint run --modules-download-mode=readonly --timeout=30m"
} }
function test_cmd() { function test_cmd() {