Skip to content

Commit 51798ee

Browse files
committed
[PRM-536] GitHub Org migration changes
1 parent ded2429 commit 51798ee

File tree

8 files changed

+36
-12
lines changed

8 files changed

+36
-12
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @NHSDigital/patient-record-management @NHSDigital/national-document-repository @NHSDigital/access-store

.github/workflows/automated-deploy-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,14 +216,14 @@ jobs:
216216
name: Deploy Lambdas on NDR Functional Repo
217217
needs: ['terraform_process']
218218
if: github.ref == 'refs/heads/main'
219-
uses: nhsconnect/national-document-repository/.github/workflows/lambdas-dev-to-main-ci.yml@main
219+
uses: NHSDigital/national-document-repository/.github/workflows/lambdas-dev-to-main-ci.yml@main
220220
secrets:
221221
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}
222222

223223
run_main_repo_deploy_ui:
224224
name: Deploy UI on NDR Functional Repo
225225
needs: ['terraform_process']
226226
if: github.ref == 'refs/heads/main'
227-
uses: nhsconnect/national-document-repository/.github/workflows/ui-dev-to-main-ci.yml@main
227+
uses: NHSDigital/national-document-repository/.github/workflows/ui-dev-to-main-ci.yml@main
228228
secrets:
229229
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}

.github/workflows/base-cleanup-lambda-edge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Checkout
4040
uses: actions/checkout@v5
4141
with:
42-
repository: 'nhsconnect/national-document-repository-infrastructure'
42+
repository: 'NHSDigital/national-document-repository-infrastructure'
4343
ref: ${{ inputs.git_ref }}
4444
fetch-depth: '0'
4545

.github/workflows/base-cleanup-workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Checkout
4545
uses: actions/checkout@v5
4646
with:
47-
repository: 'nhsconnect/national-document-repository-infrastructure'
47+
repository: 'NHSDigital/national-document-repository-infrastructure'
4848
ref: ${{ inputs.git_ref }}
4949
fetch-depth: '0'
5050

.github/workflows/cron-daily-health-check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ jobs:
7575

7676
lambda_test_job:
7777
name: Run Lambda Unit Tests
78-
uses: nhsconnect/national-document-repository/.github/workflows/base-lambdas-reusable-test.yml@main
78+
uses: NHSDigital/national-document-repository/.github/workflows/base-lambdas-reusable-test.yml@main
7979
with:
8080
python_version: "3.11"
8181
build_branch: main
8282

8383
react_testing_job:
8484
name: Run UI Unit Tests
85-
uses: nhsconnect/national-document-repository/.github/workflows/base-vitest-test.yml@main
85+
uses: NHSDigital/national-document-repository/.github/workflows/base-vitest-test.yml@main
8686
with:
8787
build_branch: main
8888

@@ -92,7 +92,7 @@ jobs:
9292
- name: Checkout
9393
uses: actions/checkout@v5
9494
with:
95-
repository: nhsconnect/national-document-repository
95+
repository: NHSDigital/national-document-repository
9696

9797
- name: Cypress install
9898
run: npm install --legacy-peer-deps
@@ -150,7 +150,7 @@ jobs:
150150
publish_all_lambda_layers:
151151
name: Publish all Lambda Layers
152152
needs: ['set_workspace', 'terraform_process']
153-
uses: nhsconnect/national-document-repository/.github/workflows/base-lambda-layer-reusable-publish-all.yml@main
153+
uses: NHSDigital/national-document-repository/.github/workflows/base-lambda-layer-reusable-publish-all.yml@main
154154
with:
155155
build_branch: main
156156
sandbox: ${{ needs.set_workspace.outputs.workspace }}
@@ -161,7 +161,7 @@ jobs:
161161

162162
deploy_all_lambdas:
163163
name: Deploy all Lambdas
164-
uses: nhsconnect/national-document-repository/.github/workflows/base-lambdas-reusable-deploy-all.yml@main
164+
uses: NHSDigital/national-document-repository/.github/workflows/base-lambdas-reusable-deploy-all.yml@main
165165
needs: ['set_workspace', 'publish_all_lambda_layers']
166166
with:
167167
build_branch: main
@@ -174,7 +174,7 @@ jobs:
174174

175175
deploy_ui:
176176
name: Deploy UI
177-
uses: nhsconnect/national-document-repository/.github/workflows/base-deploy-ui.yml@main
177+
uses: NHSDigital/national-document-repository/.github/workflows/base-deploy-ui.yml@main
178178
needs: ['terraform_process', 'set_workspace']
179179
with:
180180
build_branch: main

CONTRIBUTING.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Welcome to the National Document Repository contributors guide
2+
3+
Thank you for your interest in improving the codebase that powers the National Document Repository.
4+
5+
In this guide you will get an overview of the contribution workflow from creating a PR, reviewing, and merging the PR.
6+
7+
To raise an issue, please contact one of the [CODEOWNERS](.github/CODEOWNERS) directly, or raise a PR.
8+
9+
If you're new to GitHub and/or Markdown, GitHub's own [contributor's guide](https://github.com/github/docs/blob/main/.github/CONTRIBUTING.md) provides good signposting on these topics.
10+
11+
## Pull requests and merging
12+
13+
You can't push to the main branch. Therefore, for all changes you will need to create a new branch, and then a pull request to merge said branch into `main`. The [CODEOWNERS](.github/CODEOWNERS) will be nominated as reviewers of your PR by default, but feel free to add other people as well if you think they will have valuable input.
14+
15+
## Contributing guidelines and etiquette
16+
17+
- Preview your Markdown code to make sure the format is not broken.
18+
- Check grammar, spelling and punctuation - no-one wants to look pedantic by requesting changes due to typos or inconsistent grammar/syntax, but it's only fair to keep this tidy.
19+
- The codebase is open to the world. This has a few implications:
20+
- Nothing in it should be confidential, private to NHSE or include any personal data.
21+
- All links should be public.
22+
- Consider comments and README.md text: comments in open source repos such as this are not official communications and don't go through the normal approval process for public communication. They can however still be interpreted as official communication, even if not intended as such.
23+
- Use [inclusive language](https://github.com/NHSDigital/software-engineering-quality-framework/blob/main/inclusive-language.md): avoid terms which cause hurt and offence, including if they have historically been considered industry-standard terms.

scripts/cleanup_sandboxes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
def trigger_delete_workflow(token: str, sandbox: str):
7-
owner = "nhsconnect"
7+
owner = "NHSDigital"
88
repo = "national-document-repository-infrastructure"
99
workflow = "tear-down-sandbox.yml"
1010

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sonar.projectKey=prm-repository_infrastructure
2-
sonar.organization=prm-repository
2+
sonar.organization=nhsdigital
33

44
# This is the name and version displayed in the SonarCloud UI.
55
sonar.projectName=Repository-Infrastructure

0 commit comments

Comments
 (0)