From 3c782a06a619efd2a2f556be6eedf80561f72bad Mon Sep 17 00:00:00 2001 From: Casey Icenhour Date: Thu, 11 Jan 2024 15:24:31 -0700 Subject: [PATCH 1/6] Add template field in RTM for changelog revisions Refs #26411 --- .../doc/content/templates/sqa/rtm.md.template | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/framework/doc/content/templates/sqa/rtm.md.template b/framework/doc/content/templates/sqa/rtm.md.template index 3501f6c6575b..b7eeef5c13f9 100644 --- a/framework/doc/content/templates/sqa/rtm.md.template +++ b/framework/doc/content/templates/sqa/rtm.md.template @@ -91,6 +91,24 @@ includes: - The steps to validate the test result including any acceptance criteria. !template-end! +### Changelog Issue Revisions id=log-revisions + +Errors in changelog references can sometimes occur as a result of typos or conversion errors. If +any need to be noted by the development team, they will be noted here. + +!template! field key=log-revisions +If errors are found in issue references related to the changelog (e.g., commit history), these +should be noted here. The commit in which the errant issue reference occurs should be noted, and the +correct issue should be listed alongside each entry. Relevant links to all items are required. +An example of this might include: + +!table +| MOOSE Commit | Incorrect Referenced Issue | Correct Referenced Issue | +| - | - | - | +| [48db61](https://github.com/idaholab/moose/commit/48db61307ed87b58a96e944215f13378138cf7bc) | idaholab/sockeye#19845 | [idaholab/moose#19845](https://github.com/idaholab/moose/pull/19845) | + +!template-end! + ## System Requirements Traceability id=system-requirements ### Functional Requirements id=functional-requirements From 0e917d8049a818350f7f17f571f6126357502854 Mon Sep 17 00:00:00 2001 From: Casey Icenhour Date: Thu, 11 Jan 2024 15:26:28 -0700 Subject: [PATCH 2/6] Add example of changelog revision table to THM Refs #26411 --- .../thermal_hydraulics/sqa/thermal_hydraulics_rtm.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md b/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md index d92e66064b0e..8a26520351f5 100644 --- a/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md +++ b/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md @@ -7,3 +7,13 @@ !template! item key=system-scope !include thermal_hydraulics_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +The following known log revisions exist for the {{module}} module: + +!table +| MOOSE Commit | Incorrect Referenced Issue | Correct Referenced Issue | +| - | - | - | +| [48db61](https://github.com/idaholab/moose/commit/48db61307ed87b58a96e944215f13378138cf7bc) | idaholab/sockeye#19845 | [idaholab/moose#19845](https://github.com/idaholab/moose/pull/19845) | + +!template-end! From c31b3a5e62d514175bddbfe45dc2c58ac7057953 Mon Sep 17 00:00:00 2001 From: Casey Icenhour Date: Thu, 11 Jan 2024 15:27:24 -0700 Subject: [PATCH 3/6] Add 'no known revisions' entry to modules, framework, and python RTMs Refs #26411 --- framework/doc/content/sqa/framework_rtm.md | 4 ++++ .../contact/doc/content/modules/contact/sqa/contact_rtm.md | 4 ++++ modules/doc/content/sqa/moose_rtm.md | 4 ++++ .../modules/electromagnetics/sqa/electromagnetics_rtm.md | 4 ++++ .../modules/fluid_properties/sqa/fluid_properties_rtm.md | 4 ++++ modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md | 4 ++++ .../content/modules/heat_transfer/sqa/heat_transfer_rtm.md | 4 ++++ .../doc/content/modules/level_set/sqa/level_set_rtm.md | 4 ++++ modules/misc/doc/content/modules/misc/sqa/misc_rtm.md | 4 ++++ .../content/modules/navier_stokes/sqa/navier_stokes_rtm.md | 4 ++++ .../doc/content/modules/optimization/sqa/optimization_rtm.md | 4 ++++ .../doc/content/modules/phase_field/sqa/phase_field_rtm.md | 4 ++++ .../doc/content/modules/porous_flow/sqa/porous_flow_rtm.md | 4 ++++ modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md | 4 ++++ modules/rdg/doc/content/sqa/rdg_rtm.md | 4 ++++ .../reactor/doc/content/modules/reactor/sqa/reactor_rtm.md | 4 ++++ .../scalar_transport/doc/content/sqa/scalar_transport_rtm.md | 4 ++++ .../modules/solid_properties/sqa/solid_properties_rtm.md | 4 ++++ .../modules/stochastic_tools/sqa/stochastic_tools_rtm.md | 4 ++++ .../modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md | 4 ++++ modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md | 4 ++++ python/doc/content/python/sqa/python_rtm.md | 4 ++++ 22 files changed, 88 insertions(+) diff --git a/framework/doc/content/sqa/framework_rtm.md b/framework/doc/content/sqa/framework_rtm.md index 85e1f1debc17..e0a4b74e125b 100644 --- a/framework/doc/content/sqa/framework_rtm.md +++ b/framework/doc/content/sqa/framework_rtm.md @@ -38,6 +38,10 @@ can be found in the [Software Test Plan](sqa/framework_stp.md). !! pre-test-finish !template-end! +!template! item key=log-revisions +There are currently no known log revisions required for the {{project}}. +!template-end! + !template item key=functional-requirements !sqa requirements collections=FUNCTIONAL category=framework diff --git a/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md b/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md index a841a61f0a86..570df4e4f7ea 100644 --- a/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md +++ b/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include contact_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/doc/content/sqa/moose_rtm.md b/modules/doc/content/sqa/moose_rtm.md index dad6677c3dd5..7f27d8bd15a1 100644 --- a/modules/doc/content/sqa/moose_rtm.md +++ b/modules/doc/content/sqa/moose_rtm.md @@ -6,6 +6,10 @@ !template item key=system-scope !include system_scope.md +!template! item key=log-revisions +There are currently no known log revisions required for the {{app}} application. +!template-end! + !template item key=functional-requirements All of the requirements for [!ac](MOOSE) are provided in the dependent [!ac](RTM) documents, please refer to the documents listed in [#assumptions-and-dependencies]. diff --git a/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md b/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md index fe6223c1b990..c434be9215c0 100644 --- a/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md +++ b/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include electromagnetics_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md b/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md index 299f2796b8fb..27cd09094d3c 100644 --- a/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md +++ b/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include fluid_properties_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md b/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md index 51de0e47c9a9..630dc25c7553 100644 --- a/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md +++ b/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include fsi_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md b/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md index 1768438aec88..72623fb87c13 100644 --- a/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md +++ b/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include heat_transfer_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md b/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md index e3869f4cdcb7..e5b4c4d14a77 100644 --- a/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md +++ b/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include level_set_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md b/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md index 03b34ffbc74b..1166c88c7c55 100644 --- a/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md +++ b/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include misc_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md b/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md index d47bf461c351..6c7db56ca0bb 100644 --- a/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md +++ b/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include navier_stokes_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md b/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md index 64e8a581652a..095e13e7c4a7 100644 --- a/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md +++ b/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include optimization_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md b/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md index 379f6bf9e5c0..ee90b25b43eb 100644 --- a/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md +++ b/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include phase_field_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md b/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md index a135fc8461e5..a54167e0461b 100644 --- a/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md +++ b/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include porous_flow_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md b/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md index 00716743898f..fd4267b7c6e6 100644 --- a/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md +++ b/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include ray_tracing_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/rdg/doc/content/sqa/rdg_rtm.md b/modules/rdg/doc/content/sqa/rdg_rtm.md index b9fd465d9d17..9542b2eefc5a 100644 --- a/modules/rdg/doc/content/sqa/rdg_rtm.md +++ b/modules/rdg/doc/content/sqa/rdg_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include rdg_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md b/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md index 713cdcc681e8..abc3ca9ab9a3 100644 --- a/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md +++ b/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include reactor_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md b/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md index d06b207f9971..1ce7c53da9f1 100644 --- a/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md +++ b/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include scalar_transport_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md b/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md index 3f8e50d5a91a..123c712c6540 100644 --- a/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md +++ b/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include solid_properties_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md b/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md index 550e3d09638b..92d9c4821b75 100644 --- a/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md +++ b/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include stochastic_tools_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md b/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md index 05a61168b25d..c8ee5504fcfd 100644 --- a/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md +++ b/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include tensor_mechanics_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md b/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md index f90ed1fc0b0a..e49f03d8df27 100644 --- a/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md +++ b/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md @@ -7,3 +7,7 @@ !template! item key=system-scope !include xfem_srs.md start=system-scope-begin end=system-scope-finish !template-end! + +!template! item key=log-revisions +There are currently no known log revisions required for the {{module}} module. +!template-end! diff --git a/python/doc/content/python/sqa/python_rtm.md b/python/doc/content/python/sqa/python_rtm.md index a5204af9537b..abaa6c08008b 100644 --- a/python/doc/content/python/sqa/python_rtm.md +++ b/python/doc/content/python/sqa/python_rtm.md @@ -20,6 +20,10 @@ !include framework_rtm.md start=pre-test-begin end=pre-test-finish replace=['framework_stp.md', 'python_stp.md'] !template-end! +!template! item key=log-revisions +There are currently no known log revisions required for the {{project}} project. +!template-end! + !template item key=functional-requirements !sqa requirements collections=FUNCTIONAL category=python From 8725890577229fa3cf94dc296d950198073a236f Mon Sep 17 00:00:00 2001 From: Casey Icenhour Date: Thu, 11 Jan 2024 16:07:40 -0700 Subject: [PATCH 4/6] Address a portion of initial reviews - Centralize changelog to MOOSE RTM - Change help box text Refs #26411 --- framework/doc/content/sqa/framework_rtm.md | 3 ++- framework/doc/content/templates/sqa/rtm.md.template | 6 +++--- .../doc/content/modules/contact/sqa/contact_rtm.md | 3 ++- modules/doc/content/sqa/moose_rtm.md | 8 +++++++- .../modules/electromagnetics/sqa/electromagnetics_rtm.md | 3 ++- .../modules/fluid_properties/sqa/fluid_properties_rtm.md | 3 ++- modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md | 3 ++- .../modules/heat_transfer/sqa/heat_transfer_rtm.md | 3 ++- .../doc/content/modules/level_set/sqa/level_set_rtm.md | 3 ++- modules/misc/doc/content/modules/misc/sqa/misc_rtm.md | 3 ++- .../modules/navier_stokes/sqa/navier_stokes_rtm.md | 3 ++- .../content/modules/optimization/sqa/optimization_rtm.md | 3 ++- .../content/modules/phase_field/sqa/phase_field_rtm.md | 3 ++- .../content/modules/porous_flow/sqa/porous_flow_rtm.md | 3 ++- modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md | 3 ++- modules/rdg/doc/content/sqa/rdg_rtm.md | 3 ++- .../doc/content/modules/reactor/sqa/reactor_rtm.md | 3 ++- .../doc/content/sqa/scalar_transport_rtm.md | 3 ++- .../modules/solid_properties/sqa/solid_properties_rtm.md | 3 ++- .../modules/stochastic_tools/sqa/stochastic_tools_rtm.md | 3 ++- .../modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md | 3 ++- .../thermal_hydraulics/sqa/thermal_hydraulics_rtm.md | 9 ++------- modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md | 3 ++- python/doc/content/python/sqa/python_rtm.md | 3 ++- 24 files changed, 54 insertions(+), 32 deletions(-) diff --git a/framework/doc/content/sqa/framework_rtm.md b/framework/doc/content/sqa/framework_rtm.md index e0a4b74e125b..cdd6bbbae1da 100644 --- a/framework/doc/content/sqa/framework_rtm.md +++ b/framework/doc/content/sqa/framework_rtm.md @@ -39,7 +39,8 @@ can be found in the [Software Test Plan](sqa/framework_stp.md). !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{project}}. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! !template item key=functional-requirements diff --git a/framework/doc/content/templates/sqa/rtm.md.template b/framework/doc/content/templates/sqa/rtm.md.template index b7eeef5c13f9..adca7e0c83b2 100644 --- a/framework/doc/content/templates/sqa/rtm.md.template +++ b/framework/doc/content/templates/sqa/rtm.md.template @@ -98,9 +98,9 @@ any need to be noted by the development team, they will be noted here. !template! field key=log-revisions If errors are found in issue references related to the changelog (e.g., commit history), these -should be noted here. The commit in which the errant issue reference occurs should be noted, and the -correct issue should be listed alongside each entry. Relevant links to all items are required. -An example of this might include: +should be noted here. The commit in which the incorrect issue reference occurs should be listed, and +the correct issue should be added alongside each entry. Relevant links to all items are required. +An example of this is shown below: !table | MOOSE Commit | Incorrect Referenced Issue | Correct Referenced Issue | diff --git a/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md b/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md index 570df4e4f7ea..a725ee66a473 100644 --- a/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md +++ b/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/doc/content/sqa/moose_rtm.md b/modules/doc/content/sqa/moose_rtm.md index 7f27d8bd15a1..ad4653c57628 100644 --- a/modules/doc/content/sqa/moose_rtm.md +++ b/modules/doc/content/sqa/moose_rtm.md @@ -7,7 +7,13 @@ !include system_scope.md !template! item key=log-revisions -There are currently no known log revisions required for the {{app}} application. +The following known log revisions exist for the {{module}} module: + +!table +| MOOSE Commit | Incorrect Referenced Issue | Correct Referenced Issue | +| - | - | - | +| [48db61](https://github.com/idaholab/moose/commit/48db61307ed87b58a96e944215f13378138cf7bc) | idaholab/sockeye#19845 | [idaholab/moose#19845](https://github.com/idaholab/moose/pull/19845) | + !template-end! !template item key=functional-requirements diff --git a/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md b/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md index c434be9215c0..c9f886191f2b 100644 --- a/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md +++ b/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md b/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md index 27cd09094d3c..f84f4b2f390f 100644 --- a/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md +++ b/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md b/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md index 630dc25c7553..516eb3b53b96 100644 --- a/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md +++ b/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md b/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md index 72623fb87c13..0c1ee530aea0 100644 --- a/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md +++ b/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md b/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md index e5b4c4d14a77..9fbeefa48e70 100644 --- a/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md +++ b/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md b/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md index 1166c88c7c55..2b6ef2aa0f99 100644 --- a/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md +++ b/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md b/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md index 6c7db56ca0bb..ec86fe591767 100644 --- a/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md +++ b/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md b/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md index 095e13e7c4a7..adc702d41371 100644 --- a/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md +++ b/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md b/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md index ee90b25b43eb..a38bd4fbd8be 100644 --- a/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md +++ b/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md b/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md index a54167e0461b..cf3d2f347dfc 100644 --- a/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md +++ b/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md b/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md index fd4267b7c6e6..fa1124593121 100644 --- a/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md +++ b/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/rdg/doc/content/sqa/rdg_rtm.md b/modules/rdg/doc/content/sqa/rdg_rtm.md index 9542b2eefc5a..6bc090494423 100644 --- a/modules/rdg/doc/content/sqa/rdg_rtm.md +++ b/modules/rdg/doc/content/sqa/rdg_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md b/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md index abc3ca9ab9a3..480cdf7a388d 100644 --- a/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md +++ b/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md b/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md index 1ce7c53da9f1..d533c60916c2 100644 --- a/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md +++ b/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md b/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md index 123c712c6540..a88893e23ed8 100644 --- a/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md +++ b/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md b/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md index 92d9c4821b75..b8d1156f01f8 100644 --- a/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md +++ b/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md b/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md index c8ee5504fcfd..5fd21c770c59 100644 --- a/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md +++ b/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md b/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md index 8a26520351f5..5fc0618ec820 100644 --- a/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md +++ b/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md @@ -9,11 +9,6 @@ !template-end! !template! item key=log-revisions -The following known log revisions exist for the {{module}} module: - -!table -| MOOSE Commit | Incorrect Referenced Issue | Correct Referenced Issue | -| - | - | - | -| [48db61](https://github.com/idaholab/moose/commit/48db61307ed87b58a96e944215f13378138cf7bc) | idaholab/sockeye#19845 | [idaholab/moose#19845](https://github.com/idaholab/moose/pull/19845) | - +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md b/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md index e49f03d8df27..d75540ad4bff 100644 --- a/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md +++ b/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md @@ -9,5 +9,6 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{module}} module. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! diff --git a/python/doc/content/python/sqa/python_rtm.md b/python/doc/content/python/sqa/python_rtm.md index abaa6c08008b..5b0b4e753553 100644 --- a/python/doc/content/python/sqa/python_rtm.md +++ b/python/doc/content/python/sqa/python_rtm.md @@ -21,7 +21,8 @@ !template-end! !template! item key=log-revisions -There are currently no known log revisions required for the {{project}} project. +The changelog for all code residing in the MOOSE repository is located in the +[MOOSE RTM](moose_rtm.md#log-revisions). !template-end! !template item key=functional-requirements From b34aaba016b279260f1ae2f44082c8a0fb83c9d5 Mon Sep 17 00:00:00 2001 From: Casey Icenhour Date: Mon, 15 Jan 2024 16:44:02 -0700 Subject: [PATCH 5/6] Make MOOSE RTM link optional --- framework/doc/content/sqa/framework_rtm.md | 2 +- modules/contact/doc/content/modules/contact/sqa/contact_rtm.md | 2 +- .../modules/electromagnetics/sqa/electromagnetics_rtm.md | 2 +- .../modules/fluid_properties/sqa/fluid_properties_rtm.md | 2 +- modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md | 2 +- .../doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md | 2 +- .../doc/content/modules/level_set/sqa/level_set_rtm.md | 2 +- modules/misc/doc/content/modules/misc/sqa/misc_rtm.md | 2 +- .../doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md | 2 +- .../doc/content/modules/optimization/sqa/optimization_rtm.md | 2 +- .../doc/content/modules/phase_field/sqa/phase_field_rtm.md | 2 +- .../doc/content/modules/porous_flow/sqa/porous_flow_rtm.md | 2 +- modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md | 2 +- modules/rdg/doc/content/sqa/rdg_rtm.md | 2 +- modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md | 2 +- .../scalar_transport/doc/content/sqa/scalar_transport_rtm.md | 2 +- .../modules/solid_properties/sqa/solid_properties_rtm.md | 2 +- .../modules/stochastic_tools/sqa/stochastic_tools_rtm.md | 2 +- .../modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md | 2 +- .../modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md | 2 +- modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md | 2 +- python/doc/content/python/sqa/python_rtm.md | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/framework/doc/content/sqa/framework_rtm.md b/framework/doc/content/sqa/framework_rtm.md index cdd6bbbae1da..3a172d04eb4c 100644 --- a/framework/doc/content/sqa/framework_rtm.md +++ b/framework/doc/content/sqa/framework_rtm.md @@ -40,7 +40,7 @@ can be found in the [Software Test Plan](sqa/framework_stp.md). !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! !template item key=functional-requirements diff --git a/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md b/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md index a725ee66a473..200f7dde8142 100644 --- a/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md +++ b/modules/contact/doc/content/modules/contact/sqa/contact_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md b/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md index c9f886191f2b..d1e23393fba9 100644 --- a/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md +++ b/modules/electromagnetics/doc/content/modules/electromagnetics/sqa/electromagnetics_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md b/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md index f84f4b2f390f..2ae3166af7dc 100644 --- a/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md +++ b/modules/fluid_properties/doc/content/modules/fluid_properties/sqa/fluid_properties_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md b/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md index 516eb3b53b96..7f9a44359c22 100644 --- a/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md +++ b/modules/fsi/doc/content/modules/fsi/sqa/fsi_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md b/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md index 0c1ee530aea0..a8e722e96684 100644 --- a/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md +++ b/modules/heat_transfer/doc/content/modules/heat_transfer/sqa/heat_transfer_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md b/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md index 9fbeefa48e70..94028b669cc2 100644 --- a/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md +++ b/modules/level_set/doc/content/modules/level_set/sqa/level_set_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md b/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md index 2b6ef2aa0f99..59818f43596c 100644 --- a/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md +++ b/modules/misc/doc/content/modules/misc/sqa/misc_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md b/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md index ec86fe591767..c3dc903f984a 100644 --- a/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md +++ b/modules/navier_stokes/doc/content/modules/navier_stokes/sqa/navier_stokes_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md b/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md index adc702d41371..c11d0f82a53b 100644 --- a/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md +++ b/modules/optimization/doc/content/modules/optimization/sqa/optimization_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md b/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md index a38bd4fbd8be..d50088cd0a2a 100644 --- a/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md +++ b/modules/phase_field/doc/content/modules/phase_field/sqa/phase_field_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md b/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md index cf3d2f347dfc..ff53c7b7012f 100644 --- a/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md +++ b/modules/porous_flow/doc/content/modules/porous_flow/sqa/porous_flow_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md b/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md index fa1124593121..10008a3c46b2 100644 --- a/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md +++ b/modules/ray_tracing/doc/content/sqa/ray_tracing_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/rdg/doc/content/sqa/rdg_rtm.md b/modules/rdg/doc/content/sqa/rdg_rtm.md index 6bc090494423..6ca6eaf98bc4 100644 --- a/modules/rdg/doc/content/sqa/rdg_rtm.md +++ b/modules/rdg/doc/content/sqa/rdg_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md b/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md index 480cdf7a388d..b39d3c41d4df 100644 --- a/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md +++ b/modules/reactor/doc/content/modules/reactor/sqa/reactor_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md b/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md index d533c60916c2..e8c9da0152d7 100644 --- a/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md +++ b/modules/scalar_transport/doc/content/sqa/scalar_transport_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md b/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md index a88893e23ed8..a3d6fda57c83 100644 --- a/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md +++ b/modules/solid_properties/doc/content/modules/solid_properties/sqa/solid_properties_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md b/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md index b8d1156f01f8..3eb6f54861d9 100644 --- a/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md +++ b/modules/stochastic_tools/doc/content/modules/stochastic_tools/sqa/stochastic_tools_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md b/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md index 5fd21c770c59..0c6c6f8461ac 100644 --- a/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md +++ b/modules/tensor_mechanics/doc/content/modules/tensor_mechanics/sqa/tensor_mechanics_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md b/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md index 5fc0618ec820..c220c528341d 100644 --- a/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md +++ b/modules/thermal_hydraulics/doc/content/modules/thermal_hydraulics/sqa/thermal_hydraulics_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md b/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md index d75540ad4bff..46d1762a5d50 100644 --- a/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md +++ b/modules/xfem/doc/content/modules/xfem/sqa/xfem_rtm.md @@ -10,5 +10,5 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! diff --git a/python/doc/content/python/sqa/python_rtm.md b/python/doc/content/python/sqa/python_rtm.md index 5b0b4e753553..01c198c8ceac 100644 --- a/python/doc/content/python/sqa/python_rtm.md +++ b/python/doc/content/python/sqa/python_rtm.md @@ -22,7 +22,7 @@ !template! item key=log-revisions The changelog for all code residing in the MOOSE repository is located in the -[MOOSE RTM](moose_rtm.md#log-revisions). +[MOOSE RTM](moose_rtm.md#log-revisions optional=True). !template-end! !template item key=functional-requirements From deba03d1e4352a48a8af4e03b2355532e53cad54 Mon Sep 17 00:00:00 2001 From: Casey Icenhour Date: Tue, 16 Jan 2024 13:09:36 -0700 Subject: [PATCH 6/6] Adjust sockeye incorrect commit reference to correct one --- framework/doc/content/templates/sqa/rtm.md.template | 2 +- modules/doc/content/sqa/moose_rtm.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/doc/content/templates/sqa/rtm.md.template b/framework/doc/content/templates/sqa/rtm.md.template index adca7e0c83b2..7babf92415da 100644 --- a/framework/doc/content/templates/sqa/rtm.md.template +++ b/framework/doc/content/templates/sqa/rtm.md.template @@ -105,7 +105,7 @@ An example of this is shown below: !table | MOOSE Commit | Incorrect Referenced Issue | Correct Referenced Issue | | - | - | - | -| [48db61](https://github.com/idaholab/moose/commit/48db61307ed87b58a96e944215f13378138cf7bc) | idaholab/sockeye#19845 | [idaholab/moose#19845](https://github.com/idaholab/moose/pull/19845) | +| [48db61](https://github.com/idaholab/moose/commit/48db61307ed87b58a96e944215f13378138cf7bc) | idaholab/sockeye#19845 | [idaholab/sockeye#130](https://github.inl.gov/ncrc/sockeye/issues/130) | !template-end! diff --git a/modules/doc/content/sqa/moose_rtm.md b/modules/doc/content/sqa/moose_rtm.md index ad4653c57628..d8a22365aeb9 100644 --- a/modules/doc/content/sqa/moose_rtm.md +++ b/modules/doc/content/sqa/moose_rtm.md @@ -12,7 +12,7 @@ The following known log revisions exist for the {{module}} module: !table | MOOSE Commit | Incorrect Referenced Issue | Correct Referenced Issue | | - | - | - | -| [48db61](https://github.com/idaholab/moose/commit/48db61307ed87b58a96e944215f13378138cf7bc) | idaholab/sockeye#19845 | [idaholab/moose#19845](https://github.com/idaholab/moose/pull/19845) | +| [48db61](https://github.com/idaholab/moose/commit/48db61307ed87b58a96e944215f13378138cf7bc) | idaholab/sockeye#19845 | [idaholab/sockeye#130](https://github.inl.gov/ncrc/sockeye/issues/130) | !template-end!