diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cbd25937cd..927e2267b7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,11 +7,16 @@ updates: directory: "/web" schedule: interval: "daily" + time: "15:00" open-pull-requests-limit: 5 labels: - "dependabot" - "javascript" - "type::security" + groups: + all: + patterns: + - "*" ## Go mod @@ -19,19 +24,29 @@ updates: directory: "/" schedule: interval: "daily" + time: "15:00" labels: - "dependabot" - "go" - "type::security" + groups: + all: + patterns: + - "*" - package-ecosystem: "gomod" directory: "/kurl_proxy" schedule: interval: "daily" + time: "15:00" labels: - "dependabot" - "go" - "type::security" + groups: + all: + patterns: + - "*" ## GitHub Actions @@ -39,7 +54,12 @@ updates: directory: "/" schedule: interval: "weekly" + time: "15:00" labels: - "dependabot" - "github-actions" - "type::security" + groups: + all: + patterns: + - "*" diff --git a/.github/workflows/automated-prs-manager.yaml b/.github/workflows/automated-prs-manager.yaml index e27f5f5814..b898dcebbe 100644 --- a/.github/workflows/automated-prs-manager.yaml +++ b/.github/workflows/automated-prs-manager.yaml @@ -34,7 +34,7 @@ jobs: gh pr list \ --author 'replicated-ci-kots' \ --json url,createdAt,headRefName,headRepository,headRepositoryOwner \ - -q '.[] | select(.createdAt | fromdateiso8601 > now - 24*60*60 and .headRepositoryOwner.login == "replicatedhq" and .headRepository.name == "kots")' + -q '.[] | select((.createdAt | fromdateiso8601 > now - 24*60*60) and .headRepositoryOwner.login == "replicatedhq" and .headRepository.name == "kots")' ) prs=$(echo "$dependabot_prs" "$replicated_ci_kots_prs" | jq -sc '. | unique') @@ -46,6 +46,8 @@ jobs: strategy: matrix: pr: ${{ fromJson(needs.list-prs.outputs.prs) }} + fail-fast: false + max-parallel: 1 steps: - name: Checkout uses: actions/checkout@v4