diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f0053d48..efb22fc4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -127,3 +127,67 @@ updates: target-branch: "release-1.0" labels: - "docker dependencies" + + # Enable version updates for the following package ecosystems for release-1.2 branch + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + reviewers: + - "instructlab/ui-maintainers" + allow: + - dependency-type: "production" + target-branch: "release-1.2" + labels: + - "npm dependencies" + - "frontend" + groups: + typescript-eslint: + patterns: + - "@typescript-eslint/*" + - typescript-eslint + update-types: + - "minor" + - "patch" + react: + patterns: + - react + - react-dom + update-types: + - "minor" + - "patch" + patternfly: + patterns: + - "@patternfly/*" + - patternfly + update-types: + - "minor" + - "patch" + typescript-libraries: + patterns: + - "@types/*" + update-types: + - "minor" + - "patch" + - package-ecosystem: "github-actions" + directory: "/.github/workflows" + schedule: + interval: "weekly" + reviewers: + - "instructlab/ui-maintainers" + target-branch: "release-1.2" + labels: + - "github-actions" + groups: + actions-deps: + patterns: + - "*" + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "monthly" + reviewers: + - "instructlab/ui-maintainers" + target-branch: "release-1.2" + labels: + - "docker dependencies" diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index 5fe14b92..82a2f1dd 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -4,16 +4,16 @@ name: Lint GitHub Actions workflows on: push: branches: - - "main" - - "release-**" + - main + - 'release-**' paths: - '.github/actions/*.ya?ml' - '.github/workflows/*.ya?ml' - '.github/workflows/actionlint.*' # This workflow pull_request: branches: - - "main" - - "release-**" + - main + - 'release-**' paths: - '.github/actions/*.ya?ml' - '.github/workflows/*.ya?ml' diff --git a/.github/workflows/api-server.yml b/.github/workflows/api-server.yml index e17904e6..1496be50 100644 --- a/.github/workflows/api-server.yml +++ b/.github/workflows/api-server.yml @@ -4,14 +4,14 @@ on: push: branches: - main - - release-1.0 + - 'release-**' paths: - 'api-server/**' pull_request: branches: - main - - release-1.0 + - 'release-**' paths: - 'api-server/**' diff --git a/.github/workflows/lint-jobs.yml b/.github/workflows/lint-jobs.yml index 29c63b28..d3cbd11c 100644 --- a/.github/workflows/lint-jobs.yml +++ b/.github/workflows/lint-jobs.yml @@ -4,11 +4,11 @@ on: push: branches: - main - - release-1.0 + - 'release-**' pull_request: branches: - main - - release-1.0 + - 'release-**' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} diff --git a/.github/workflows/lint-ui.yml b/.github/workflows/lint-ui.yml index c94a2e1d..b837ab48 100644 --- a/.github/workflows/lint-ui.yml +++ b/.github/workflows/lint-ui.yml @@ -4,7 +4,7 @@ on: push: branches: - main - - release-1.0 + - 'release-**' paths: - '.github/workflows/lint-ui.yml' - '**/*' @@ -12,7 +12,7 @@ on: pull_request: branches: - main - - release-1.0 + - 'release-**' paths: - '.github/workflows/lint-ui.yml' - '**/*'