Promote release 3.1.2 to main - #47
Merged
Merged
Conversation
* fix(ospo): rename national-digital-twin to national-node-net * fix(ospo): add missing pull request and issue templates * fix(ospo): add missing InnerSource checklist files * fix(ospo): remove forbidden placeholder strings and add required licence text * feat(OSPO): synchronise OSPO workflows --------- Co-authored-by: syed-awsaf-informed <197770623+syed-awsaf-informed@users.noreply.github.com>
✅ InnerSource Checks PassedAll tracked InnerSource checks passed in this run.
Results from commit b94034e, view the full job summary |
There was a problem hiding this comment.
Pull request overview
Promotes release 3.1.2 to main by updating repository metadata/links to the new GitHub organisation and adding governance/licensing documentation plus supporting GitHub Actions automation (OSS checks, release tagging/SBOM, and back-merge).
Changes:
- Added governance and policy documents (security policy, code of conduct, contributing guide, maintainers, acknowledgements, InnerSource licence).
- Updated repository URLs in docs/metadata from
National-Digital-TwintoNational-Node-Net. - Introduced GitHub Actions workflows for OSS compliance checks, automated tagging/release with SBOM, and automatic back-merge to
develop.
Reviewed changes
Copilot reviewed 17 out of 17 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| SECURITY.md | Adds responsible disclosure policy and reporting instructions. |
| README.md | Updates documentation link and adds licensing section reference. |
| pyproject.toml | Updates project repository URL to the new organisation. |
| MAINTAINERS.md | Introduces maintainer responsibilities and contact/escalation guidance. |
| LICENSE.md | Adds NDTP InnerSource Licence v1.0 terms for the repository. |
| docs/security-label-modules.md | Updates label-builder links to the new organisation. |
| docs/index.md | Updates documentation index links to the new organisation. |
| CONTRIBUTING.md | Adds contribution model/branching/PR policy guidance. |
| CODE_OF_CONDUCT.md | Adds expected behaviour and enforcement process. |
| CHANGELOG.md | Adds 3.1.2 entry and references InnerSource licence. |
| ACKNOWLEDGEMENTS.md | Adds acknowledgements document for organisations/individuals. |
| .github/workflows/publish-github-release.yml | Automates version extraction, SBOM generation, tagging, and GitHub release publishing. |
| .github/workflows/oss-checker.yml | Adds OSS file/template/policy compliance checks and PR commenting. |
| .github/workflows/auto-back-merge.yml | Automates merging main back into develop after PR merge. |
| .github/PULL_REQUEST_TEMPLATE.md | Adds PR template for contributors/maintainers. |
| .github/ISSUE_TEMPLATE/feature_request.md | Adds feature request issue template. |
| .github/ISSUE_TEMPLATE/bug_report.md | Adds bug report issue template. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+48
to
+59
| try { | ||
| // Attempt to merge main into develop, use the api to ensure the commit | ||
| // is gpg signed. | ||
| await github.rest.repos.merge({ | ||
| owner: context.repo.owner, | ||
| repo: context.repo.repo, | ||
| base: 'develop', | ||
| head: 'main', | ||
| commit_message: `Merge branch 'main' into 'develop' (#${prNumber})` | ||
| }); | ||
|
|
||
| let summaryText = |
| - name: Print Tag Version | ||
| id: print_tag | ||
| env: | ||
| EXTRACTED_VERSION: ${{ steps.extract_version.outputs.version }} |
Comment on lines
+99
to
+103
| By submitting feedback, documentation suggestions, or issue reports, you acknowledge that any resulting changes will be licensed under the same open-source terms as this repository: | ||
|
|
||
| - Code contributions (if ever accepted) will be licensed under Apache 2.0. | ||
| - Documentation updates will be licensed under OGL v3.0. | ||
|
|
Comment on lines
+34
to
+36
| | [Maintainer Name] | [NDTP / Supplier Name] | Lead Maintainer | [email@example.org] | | ||
| | [Maintainer Name] | [NDTP / Supplier Name] | Security Contact | [security@example.org] | | ||
| | [Maintainer Name] | [NDTP / Supplier Name] | Documentation Lead | [docs@example.org] | |
| @@ -0,0 +1,146 @@ | |||
| # SPDX-License-Identifier: Apache-2.0 | |||
| @@ -0,0 +1,564 @@ | |||
| # SPDX-License-Identifier: Apache-2.0 | |||
| @@ -0,0 +1,93 @@ | |||
| # SPDX-License-Identifier: Apache-2.0 | |||
| @@ -0,0 +1,27 @@ | |||
| <!-- | |||
| Before you open a pull request please review the following guidelines and tip and edit the relevant sections. | |||
Comment on lines
+12
to
+23
| i.e. | ||
| - [Supplier A] | ||
| - [Supplier B] | ||
| - [Supplier C] | ||
| - [Supplier D] | ||
| (etc.) | ||
|
|
||
| <!-- | ||
|
|
||
| GUIDANCE: IN PLACE OF THE ABOVE LIST, PROVIDE THE ACTUAL SUPPLIER/ORGANISATION DETAILS THAT ARE RELEVANT TO THE REPOSITORY | ||
|
|
||
| --> |
cruddasj
approved these changes
Jul 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Promote release 3.1.2 to main