From f299598ba650a8be5e2f6f7d83cda23211d9ab25 Mon Sep 17 00:00:00 2001 From: George Raduta Date: Tue, 19 May 2026 11:14:10 +0200 Subject: [PATCH 1/2] Disable Configuration and Tokenisation deps updates --- .github/dependabot.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6e16e3d94..151c036a0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,10 @@ updates: directory: "/" schedule: interval: "monthly" + labels: + - "github-actions" + - "dependencies" + open-pull-requests-limit: 3 - package-ecosystem: npm directory: "/Control" schedule: @@ -117,3 +121,24 @@ updates: ignore: - dependency-name: "*" update-types: ["version-update:semver-patch"] +# projects below are currently archived and not set up for maintenance +- package-ecosystem: npm + directory: "/Configuration/webapp" + schedule: + interval: weekly + open-pull-requests-limit: 0 +- package-ecosystem: npm + directory: "/Tokenization/backend/central-system" + schedule: + interval: weekly + open-pull-requests-limit: 0 +- package-ecosystem: npm + directory: "/Tokenization/backend/wrapper" + schedule: + interval: weekly + open-pull-requests-limit: 0 +- package-ecosystem: npm + directory: "/Tokenization/webapp" + schedule: + interval: weekly + open-pull-requests-limit: 0 From 5b971add9366f3c14f5dbe5f2d81da7f4f7dbf09 Mon Sep 17 00:00:00 2001 From: George Raduta Date: Tue, 19 May 2026 11:16:46 +0200 Subject: [PATCH 2/2] Add option to stop any existing runs for a newly updated branch --- .github/workflows/configuration.yml | 4 +++- .github/workflows/control.yml | 4 +++- .github/workflows/framework.yml | 3 +++ .github/workflows/infologger.yml | 3 +++ .github/workflows/qc.yml | 4 +++- .github/workflows/tokenization.yml | 4 +++- 6 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/workflows/configuration.yml b/.github/workflows/configuration.yml index fb08c19e5..e3f55cf23 100644 --- a/.github/workflows/configuration.yml +++ b/.github/workflows/configuration.yml @@ -8,7 +8,9 @@ on: branches: - 'main' - 'dev' - +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: formatting-check: name: Check prettier formatting rules on ubuntu-latest diff --git a/.github/workflows/control.yml b/.github/workflows/control.yml index 818aab3fa..3556f79f1 100644 --- a/.github/workflows/control.yml +++ b/.github/workflows/control.yml @@ -8,7 +8,9 @@ on: branches: - 'main' - 'dev' - +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: test: name: Tests on macos-latest diff --git a/.github/workflows/framework.yml b/.github/workflows/framework.yml index 893c069e3..f97fa520d 100644 --- a/.github/workflows/framework.yml +++ b/.github/workflows/framework.yml @@ -9,6 +9,9 @@ on: branches: - 'main' - 'dev' +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: test: name: Tests on macos-latest diff --git a/.github/workflows/infologger.yml b/.github/workflows/infologger.yml index db0b95edc..fedf09391 100644 --- a/.github/workflows/infologger.yml +++ b/.github/workflows/infologger.yml @@ -8,6 +8,9 @@ on: branches: - 'main' - 'dev' +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: test: name: Tests on ubuntu-latest diff --git a/.github/workflows/qc.yml b/.github/workflows/qc.yml index 6e485cd53..1a6d70c7c 100644 --- a/.github/workflows/qc.yml +++ b/.github/workflows/qc.yml @@ -8,7 +8,9 @@ on: branches: - 'main' - 'dev' - +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: lint-check: name: Check eslint rules on ubuntu-latest diff --git a/.github/workflows/tokenization.yml b/.github/workflows/tokenization.yml index 72cfd65a4..deda33b15 100644 --- a/.github/workflows/tokenization.yml +++ b/.github/workflows/tokenization.yml @@ -7,7 +7,9 @@ on: push: branches: - 'dev' - +concurrency: + group: central-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: lint-check-backend: name: Check eslint rules for backend on ubuntu-latest