diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..4b732ba --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,18 @@ +version: 2 + +multi-ecosystem-groups: + multicluster: + schedule: + interval: daily + +updates: +- package-ecosystem: nuget + directory: /src/Vecc.K8s.MultiCluster.Api + patterns: + - "*" + multi-ecosystem-group: multicluster +- package-ecosystem: dotnet-sdk + directory: /src/Vecc.K8s.MultiCluster.Api + patterns: + - "*" + multi-ecosystem-group: multicluster \ No newline at end of file diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7dace5a..74821d1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,9 +4,13 @@ on: push: branches: - main + paths-ignore: + - .github/** pull_request: branches: - main + paths-ignore: + - .github/** workflow_dispatch: jobs: diff --git a/test/tests/service-in-both-equal-weight/test.sh b/test/tests/service-in-both-equal-weight/test.sh index a200afb..d4c1b7c 100755 --- a/test/tests/service-in-both-equal-weight/test.sh +++ b/test/tests/service-in-both-equal-weight/test.sh @@ -31,7 +31,7 @@ setup() { (( RETCODE+=$? )) || true echo "Giving it a second for the api's to register everything" - sleep 20 + sleep 30 return $RETCODE } diff --git a/test/tests/service-only-in-test1/test.sh b/test/tests/service-only-in-test1/test.sh index c27104d..0872319 100755 --- a/test/tests/service-only-in-test1/test.sh +++ b/test/tests/service-only-in-test1/test.sh @@ -20,7 +20,7 @@ setup() { (( RETCODE+=$? )) || true echo "Giving it 20 seconds for the api's to register everything" - sleep 20 + sleep 30 return $RETCODE } diff --git a/test/tests/service-only-in-test2/test.sh b/test/tests/service-only-in-test2/test.sh index 996e392..70252ec 100755 --- a/test/tests/service-only-in-test2/test.sh +++ b/test/tests/service-only-in-test2/test.sh @@ -20,7 +20,7 @@ setup() { (( RETCODE+=$? )) || true echo "Giving it 20 seconds for the api's to register everything" - sleep 20 + sleep 30 return $RETCODE }