diff --git a/.github/workflows/ClinicalObservations.yml b/.github/workflows/ClinicalObservations.yml index e45de373a..64b2c46c5 100644 --- a/.github/workflows/ClinicalObservations.yml +++ b/.github/workflows/ClinicalObservations.yml @@ -15,7 +15,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time - run: sleep $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds - name: Set today id: today @@ -25,15 +25,6 @@ jobs: id: branch-name run: echo "BRANCH=$(echo ${{ steps.today.outputs.TODAY }} | tr -d '[:space:]' | tr -d ':')" >> $GITHUB_OUTPUT - - name: Update README - run: | - export NUMLINES=$(wc -l < README.md) - export NUMLINES=$(($NUMLINES-2)) - head -$NUMLINES README.md > README1.md - echo "" >> README1.md - echo "Updated at: $(date)" >> README1.md - mv README1.md README.md - - name: Download and commit simplifier source code run: | cd ClinicalObservations @@ -44,7 +35,7 @@ jobs: unzip export.zip -x settings.style rm -f export.zip cd .. - export NUMLINES=$(wc -l < README.md) + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below export NUMLINES=$(($NUMLINES-2)) head -$NUMLINES README.md > README1.md echo "" >> README1.md diff --git a/.github/workflows/CurrentFHIRIGTemplate.yml b/.github/workflows/CurrentFHIRIGTemplate.yml index d8f3418f4..5ea3c6792 100644 --- a/.github/workflows/CurrentFHIRIGTemplate.yml +++ b/.github/workflows/CurrentFHIRIGTemplate.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/Diabetes.yml b/.github/workflows/Diabetes.yml index f9c193f97..ad42a93be 100644 --- a/.github/workflows/Diabetes.yml +++ b/.github/workflows/Diabetes.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/FHIR-Mappings-STU3-CareConnect-to-R4-UKCore.yml b/.github/workflows/FHIR-Mappings-STU3-CareConnect-to-R4-UKCore.yml index 0dec921b6..3f80fd053 100644 --- a/.github/workflows/FHIR-Mappings-STU3-CareConnect-to-R4-UKCore.yml +++ b/.github/workflows/FHIR-Mappings-STU3-CareConnect-to-R4-UKCore.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/Frameworks.yml b/.github/workflows/Frameworks.yml index 43623a71b..8e30e447d 100644 --- a/.github/workflows/Frameworks.yml +++ b/.github/workflows/Frameworks.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/GPConnectDirectCareAPIs-R4.yml b/.github/workflows/GPConnectDirectCareAPIs-R4.yml index 004e9fcd2..23ceaaa9b 100644 --- a/.github/workflows/GPConnectDirectCareAPIs-R4.yml +++ b/.github/workflows/GPConnectDirectCareAPIs-R4.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/GPConnectDirectCareAPIs-STU3.yml b/.github/workflows/GPConnectDirectCareAPIs-STU3.yml index 6fc2b0a00..e4c702940 100644 --- a/.github/workflows/GPConnectDirectCareAPIs-STU3.yml +++ b/.github/workflows/GPConnectDirectCareAPIs-STU3.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/HL7FHIRUKCoreR4-Backup.yml b/.github/workflows/HL7FHIRUKCoreR4-Backup.yml index 35310f671..0c777e41e 100644 --- a/.github/workflows/HL7FHIRUKCoreR4-Backup.yml +++ b/.github/workflows/HL7FHIRUKCoreR4-Backup.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/ImplementationGuideforDigitalMedicines.yml b/.github/workflows/ImplementationGuideforDigitalMedicines.yml index ff704af93..b06a6df0e 100644 --- a/.github/workflows/ImplementationGuideforDigitalMedicines.yml +++ b/.github/workflows/ImplementationGuideforDigitalMedicines.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/ImplementationGuideforDoseSyntax.yml b/.github/workflows/ImplementationGuideforDoseSyntax.yml index 24bf67e0d..30f223c6e 100644 --- a/.github/workflows/ImplementationGuideforDoseSyntax.yml +++ b/.github/workflows/ImplementationGuideforDoseSyntax.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/NHSBookingandReferrals.yml b/.github/workflows/NHSBookingandReferrals.yml index 2661b4941..8c8e6dba5 100644 --- a/.github/workflows/NHSBookingandReferrals.yml +++ b/.github/workflows/NHSBookingandReferrals.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/NHSDigitalFHIRMedicinesImplementationGuide.yml b/.github/workflows/NHSDigitalFHIRMedicinesImplementationGuide.yml index 4abf8d4e3..3adbc9a7e 100644 --- a/.github/workflows/NHSDigitalFHIRMedicinesImplementationGuide.yml +++ b/.github/workflows/NHSDigitalFHIRMedicinesImplementationGuide.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/NHSEnglandFHIRGenomicsImplementationGuide.yml b/.github/workflows/NHSEnglandFHIRGenomicsImplementationGuide.yml index 31858bfb4..e34da2469 100644 --- a/.github/workflows/NHSEnglandFHIRGenomicsImplementationGuide.yml +++ b/.github/workflows/NHSEnglandFHIRGenomicsImplementationGuide.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/NHSEnglandImplementationGuide .yml b/.github/workflows/NHSEnglandImplementationGuide .yml index 325764902..d7d031760 100644 --- a/.github/workflows/NHSEnglandImplementationGuide .yml +++ b/.github/workflows/NHSEnglandImplementationGuide .yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/NHSEnglandProgrammeImplementationGuides.yml b/.github/workflows/NHSEnglandProgrammeImplementationGuides.yml index 79eba9602..5040e664d 100644 --- a/.github/workflows/NHSEnglandProgrammeImplementationGuides.yml +++ b/.github/workflows/NHSEnglandProgrammeImplementationGuides.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/PDSAPI.yml b/.github/workflows/PDSAPI.yml index 4ce31a140..c8bf1b18a 100644 --- a/.github/workflows/PDSAPI.yml +++ b/.github/workflows/PDSAPI.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/Pathology.yml b/.github/workflows/Pathology.yml index 2321a19a6..efaf6b843 100644 --- a/.github/workflows/Pathology.yml +++ b/.github/workflows/Pathology.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/SummaryCareRecordFHIRAPIImplementationGuide.yml b/.github/workflows/SummaryCareRecordFHIRAPIImplementationGuide.yml index e63496ce8..bc78afcb5 100644 --- a/.github/workflows/SummaryCareRecordFHIRAPIImplementationGuide.yml +++ b/.github/workflows/SummaryCareRecordFHIRAPIImplementationGuide.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/UKFHIRCommunityAssets-Backup.yml b/.github/workflows/UKFHIRCommunityAssets-Backup.yml index da37202a4..099d2a299 100644 --- a/.github/workflows/UKFHIRCommunityAssets-Backup.yml +++ b/.github/workflows/UKFHIRCommunityAssets-Backup.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/eRS.yml b/.github/workflows/eRS.yml index ec7439174..7e896ddd1 100644 --- a/.github/workflows/eRS.yml +++ b/.github/workflows/eRS.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/.github/workflows/z_Template-Backup.yml b/.github/workflows/z_Template-Backup.yml index 467edd5eb..eba3be948 100644 --- a/.github/workflows/z_Template-Backup.yml +++ b/.github/workflows/z_Template-Backup.yml @@ -14,6 +14,9 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} + - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time + run: sleep $((RANDOM %30))m $((RANDOM % 59))s #sleeps for a random number of minutes and seconds + - name: Set today id: today run: echo "TODAY=$(date)" >> $GITHUB_OUTPUT @@ -32,6 +35,12 @@ jobs: unzip export.zip -x settings.style mv export.zip .. cd .. + export NUMLINES=$(wc -l < README.md) #Updates README file. Shows when last updated but also used to ensure changes made for the PR / merge steps below + export NUMLINES=$(($NUMLINES-2)) + head -$NUMLINES README.md > README1.md + echo "" >> README1.md + echo "Updated at: $(date)" >> README1.md + mv README1.md README.md - name: Sleep random #Used to stop error due to multiple actions wanting PRs to be merged at the same time run: sleep ${RANDOM:0:30}m ${RANDOM:0:59}s #sleeps for a random number of minutes and seconds diff --git a/CurrentFHIRIGTemplate/README.md b/CurrentFHIRIGTemplate/README.md index 30851bfcc..27f2faaf9 100644 --- a/CurrentFHIRIGTemplate/README.md +++ b/CurrentFHIRIGTemplate/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [Current FHIR IG Template](fhirimplementationguidetemplate) It was created on 29/09/2023 and has been set up to run every 1 month + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/Diabetes/README.md b/Diabetes/README.md index 340a62a5d..ffb508103 100644 --- a/Diabetes/README.md +++ b/Diabetes/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [Diabetes](https://simplifier.net/diabetesinfosharing) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/FHIR-Mappings-STU3-CareConnect-to-R4-UKCore/README.md b/FHIR-Mappings-STU3-CareConnect-to-R4-UKCore/README.md index e93388357..21bc7f6bf 100644 --- a/FHIR-Mappings-STU3-CareConnect-to-R4-UKCore/README.md +++ b/FHIR-Mappings-STU3-CareConnect-to-R4-UKCore/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [FHIR-Mappings-STU3-CareConnect-to-R4-UKCore](https://simplifier.net/fhir-mappings-stu3-careconnect-to-r4-ukcore) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/Frameworks/README.md b/Frameworks/README.md index 6a45a12ca..1a454793c 100644 --- a/Frameworks/README.md +++ b/Frameworks/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [Frameworks](https://simplifier.net/frameworks) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/GPConnectDirectCareAPIs-R4/README.md b/GPConnectDirectCareAPIs-R4/README.md index 37608bb54..3cce93691 100644 --- a/GPConnectDirectCareAPIs-R4/README.md +++ b/GPConnectDirectCareAPIs-R4/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [GP Connect / Direct Care APIs - R4](https://simplifier.net/GP-Connect---Direct-Care-APIs---R4/~introduction) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/GPConnectDirectCareAPIs-STU3/README.md b/GPConnectDirectCareAPIs-STU3/README.md index 343dd542a..c64011278 100644 --- a/GPConnectDirectCareAPIs-STU3/README.md +++ b/GPConnectDirectCareAPIs-STU3/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [GP Connect / Direct Care APIs - STU3](https://simplifier.net/gpconnect2) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/HL7FHIRUKCoreR4/README.md b/HL7FHIRUKCoreR4/README.md index 76c3335fa..82c6430f7 100644 --- a/HL7FHIRUKCoreR4/README.md +++ b/HL7FHIRUKCoreR4/README.md @@ -1,4 +1,8 @@ # HL7 FHIR UK Core R4 This folder contains the Simplifier Project [HL7 FHIR UK Core R4](https://simplifier.net/hl7fhirukcorer4) -It was created on 28/09/2023 and has been set up to run at 16:00 every day. \ No newline at end of file +It was created on 28/09/2023 and has been set up to run at 16:00 every day. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/ImplementationGuideforDigitalMedicines/README.md b/ImplementationGuideforDigitalMedicines/README.md index 8de9b57af..5a6921164 100644 --- a/ImplementationGuideforDigitalMedicines/README.md +++ b/ImplementationGuideforDigitalMedicines/README.md @@ -3,3 +3,7 @@ This folder contains the Simplifier Project [Implementation Guide for Digital Me It was created on 29/09/2023 and has been set up to run every 1 month +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 + diff --git a/ImplementationGuideforDoseSyntax/README.md b/ImplementationGuideforDoseSyntax/README.md index 12b22eefc..caaf19cdb 100644 --- a/ImplementationGuideforDoseSyntax/README.md +++ b/ImplementationGuideforDoseSyntax/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [Implementation Guide for Dose Syntax](https://simplifier.net/dosesyntaxforr4) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/NHSBookingandReferrals/README.md b/NHSBookingandReferrals/README.md index 483c4ec4b..446cc6192 100644 --- a/NHSBookingandReferrals/README.md +++ b/NHSBookingandReferrals/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [NHS Booking and Referrals](https://simplifier.net/nhsbookingandreferrals) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/NHSDigitalFHIRMedicinesImplementationGuide/README.md b/NHSDigitalFHIRMedicinesImplementationGuide/README.md index 0647a72c4..ebcd83221 100644 --- a/NHSDigitalFHIRMedicinesImplementationGuide/README.md +++ b/NHSDigitalFHIRMedicinesImplementationGuide/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [NHS Digital FHIR Medicines Implementation Guide](https://simplifier.net/ukdigitalmedicine) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/NHSEnglandFHIRGenomicsImplementationGuide/README.md b/NHSEnglandFHIRGenomicsImplementationGuide/README.md index 3690c502f..3d3bbb132 100644 --- a/NHSEnglandFHIRGenomicsImplementationGuide/README.md +++ b/NHSEnglandFHIRGenomicsImplementationGuide/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [NHS England FHIR Genomics Implementation Guide](https://simplifier.net/nhs-digital-fhir-genomics-implementation-guide) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/NHSEnglandImplementationGuide/README.md b/NHSEnglandImplementationGuide/README.md index 343c14845..c188190bc 100644 --- a/NHSEnglandImplementationGuide/README.md +++ b/NHSEnglandImplementationGuide/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [NHS England Implementation Guide ](https://simplifier.net/nhs-england-implementation-guide) It was created on 28/09/2023 and has been set up to run at 16:00 every day. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/NHSEnglandProgrammeImplementationGuides/README.md b/NHSEnglandProgrammeImplementationGuides/README.md index faba10ce7..c5a304b80 100644 --- a/NHSEnglandProgrammeImplementationGuides/README.md +++ b/NHSEnglandProgrammeImplementationGuides/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [NHS England Programme Implementation Guides](https://simplifier.net/nhs-england-programme-implementation-guides) It was created on 29/09/2023 and has been set up to run every 1 day. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/PDSAPI/README.md b/PDSAPI/README.md index 1f5174db1..23548324a 100644 --- a/PDSAPI/README.md +++ b/PDSAPI/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [PDS API](https://simplifier.net/pdsapi) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/Pathology/README.md b/Pathology/README.md index 3f866ae69..b7dac1c9c 100644 --- a/Pathology/README.md +++ b/Pathology/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [Pathology](https://simplifier.net/pathology) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/README.md b/README.md index 7ef31f3d0..a923f7b6f 100644 --- a/README.md +++ b/README.md @@ -60,4 +60,4 @@ GITHUB_TOKEN has been setup with the default permissions granted to run workflow ## Configuration of branches to delete automatically -Updated at: Tue Oct 3 10:46:42 UTC 2023 +This repository has been set up to automatically delete merged branches, for more details see [GitHub docs](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-the-automatic-deletion-of-branches) diff --git a/SummaryCareRecordFHIRAPIImplementationGuide/README.md b/SummaryCareRecordFHIRAPIImplementationGuide/README.md index 7d7e21ace..a5eb8df1a 100644 --- a/SummaryCareRecordFHIRAPIImplementationGuide/README.md +++ b/SummaryCareRecordFHIRAPIImplementationGuide/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [Summary Care Record FHIR API Implementation Guide](https://simplifier.net/summarycarerecord-pluscodedentry) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/UKFHIRCommunityAssets/README.md b/UKFHIRCommunityAssets/README.md index 0840f2e3d..c881e8fea 100644 --- a/UKFHIRCommunityAssets/README.md +++ b/UKFHIRCommunityAssets/README.md @@ -1,4 +1,8 @@ # UK FHIR Community Assets This folder contains the Simplifier Project [UK FHIR Community Assets](https://simplifier.net/ukfhircommunityassets) -It was created on 28/09/2023 and has been set up to run on the first of every month at 18:00. \ No newline at end of file +It was created on 28/09/2023 and has been set up to run on the first of every month at 18:00. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/eRS/README.md b/eRS/README.md index 9492c1e58..2cd7d210f 100644 --- a/eRS/README.md +++ b/eRS/README.md @@ -2,3 +2,7 @@ This folder contains the Simplifier Project [eRS](https://simplifier.net/ers) It was created on 29/09/2023 and has been set up to run every 1 month. + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023 diff --git a/z_Template/README.md b/z_Template/README.md index 430075e74..9a90daa3f 100644 --- a/z_Template/README.md +++ b/z_Template/README.md @@ -1,4 +1,8 @@ # [Project File Name] This folder contains the Simplifier Project [Project Name](link to Project) -It was created on [date] and has been set up to run every [details of cron job] \ No newline at end of file +It was created on [date] and has been set up to run every [details of cron job] + +## Last Updated + +Updated at: Tue Jun 13 08:12:44 UTC 2023