Skip to content

Commit e721203

Browse files
authored
Merge branch 'main' into green-amber-clarification
2 parents 8177f44 + 7abfb81 commit e721203

File tree

105 files changed

+4617
-1212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+4617
-1212
lines changed

.DS_Store

-6 KB
Binary file not shown.

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ indent_size = 2
77
indent_style = space
88
insert_final_newline = true
99
trim_trailing_whitespace = true
10+
11+
[*{.mk,Makefile}]
12+
indent_style = tab

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Default owners for everything in the repo - unless a later match takes precedence
2+
* @NHSDigital/software-engineering-quality-framework-code-owners

.github/workflows/action.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Check Markdown Format
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
types: [opened, synchronize, reopened, ready_for_review]
8+
branches: [main]
9+
10+
jobs:
11+
markdown-check-format:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
- run: |
18+
BRANCH_NAME=${{ github.event.repository.default_branch }}
19+
scripts/markdown-check-format.sh
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"aliveStatusCodes": [200, 403],
3+
"timeout": "30s"
4+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Check Markdown Links
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
types: [opened, synchronize, reopened, ready_for_review]
8+
branches: [main]
9+
10+
jobs:
11+
markdown-check-links:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
- uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec # 1.0.15
18+
with:
19+
use-quiet-mode: "yes"
20+
config-file: .github/workflows/markdown-check-links.json

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
.obsidian
3+
.vs
4+
*.code-workspace
5+
!project.code-workspace

.vscode/extensions.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"recommendations": [
3+
"davidanson.vscode-markdownlint",
4+
"editorconfig.editorconfig",
5+
"johnpapa.vscode-peacock",
6+
"streetsidesoftware.code-spell-checker",
7+
"vscode-icons-team.vscode-icons",
8+
"yzhang.dictionary-completion",
9+
"yzhang.markdown-all-in-one"
10+
]
11+
}

CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)