Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
01b05dd
CCM-17346: Move To Shared Modules Model
damientobin1 May 6, 2026
35aa202
CCM-17346: Add Shared Modules
damientobin1 May 6, 2026
3c6fccf
CCM-17346: Use local build-docs action in stage-3
damientobin1 May 6, 2026
e5e0104
Revert "CCM-17346: Use local build-docs action in stage-3"
damientobin1 May 6, 2026
14d70fa
CCM-17346: Restore pnpm_version input for stage-2 workflow
damientobin1 May 6, 2026
be98efe
CCM-17346: Remove remaining local composite actions
damientobin1 May 6, 2026
8329b62
CCM-17346: Align dependabot checks with client-callbacks
damientobin1 May 6, 2026
2c17116
CCM-17346: Add pnpm setup to test-unit job
damientobin1 May 6, 2026
969844c
CCM-17346: Restore local actions not in scope of this PR
damientobin1 May 6, 2026
0b561b3
CCM-17346: Remove unused local actions replaced by shared-modules
damientobin1 May 6, 2026
6bd03af
CCM-17346: Trigger CI after marking SonarCloud hotspots as safe
damientobin1 May 6, 2026
495c566
CCM-17346: Restore local actions; use local build-docs in stage-3
damientobin1 May 6, 2026
d68ff92
CCM-17346: Remove obsolete scripts/githooks and local TODO check wiring
damientobin1 May 6, 2026
5672a24
CCM-17346: Restore check-todos ignore config for shared TODO hook
damientobin1 May 6, 2026
eec33e5
CCM-17346: Remove unused local setup and trivy actions
damientobin1 May 6, 2026
c6c5cf9
CCM-17346: Move To Shared Modules Model
damientobin1 May 12, 2026
84c0923
CCM-17346: Move To Shared Modules Model
damientobin1 May 12, 2026
357d1f8
CCM-17346: Move To Shared Modules Model
damientobin1 May 12, 2026
035d277
CCM-17346: Move To Shared Modules Model
damientobin1 May 12, 2026
829dd76
CCM-17346: Move To Shared Modules Model
damientobin1 May 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
scripts/docker/** linguist-vendored
Comment thread
damientobin1 marked this conversation as resolved.
scripts/githooks/** linguist-vendored
scripts/reports/** linguist-vendored
scripts/terraform/** linguist-vendored
scripts/tests/test.mk linguist-vendored
Expand Down
10 changes: 0 additions & 10 deletions .github/actions/check-english-usage/action.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/actions/check-file-format/action.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/actions/check-markdown-format/action.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/actions/check-todo-usage/action.yaml

This file was deleted.

68 changes: 0 additions & 68 deletions .github/actions/create-lines-of-code-report/action.yaml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/actions/lint-terraform/action.yaml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/actions/perform-static-analysis/action.yaml

This file was deleted.

87 changes: 0 additions & 87 deletions .github/actions/scan-dependencies/action.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/actions/scan-secrets/action.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/actions/setup/action.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/actions/trivy-iac/action.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/actions/trivy-package/action.yaml

This file was deleted.

22 changes: 21 additions & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,43 @@ updates:
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "CCM-9336: "
cooldown:
default-days: 7

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "CCM-9336: "
cooldown:
default-days: 7

- package-ecosystem: "pnpm"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "CCM-9336: "
cooldown:
default-days: 7

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "CCM-9336: "
cooldown:
default-days: 7

- package-ecosystem: "terraform"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: "CCM-9336: "
cooldown:
default-days: 7
20 changes: 20 additions & 0 deletions .github/workflows/cicd-4-pr-title-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "4. PR Title Check"

on:
pull_request:
types: [opened, reopened, synchronize, edited]
branches:
- main

permissions:
contents: read

jobs:
check-pr-title:
name: "Check PR title"
runs-on: ubuntu-latest
steps:
- name: "Check PR title format"
uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-pr-title-format@3.1.2
with:
title: ${{ github.event.pull_request.title }}
Loading
Loading