From 45d4e11907ab5f6e5574a1366e1a9d1df46de249 Mon Sep 17 00:00:00 2001 From: cansavvy Date: Fri, 26 Jan 2024 18:43:49 +0000 Subject: [PATCH 1/5] =?UTF-8?q?=F0=9F=94=84=20Synced=20local=20'config=5Fa?= =?UTF-8?q?utomation.yml'=20with=20remote=20'config=5Fautomation.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release-null --- config_automation.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config_automation.yml b/config_automation.yml index 12d9dd0..1c9d38a 100644 --- a/config_automation.yml +++ b/config_automation.yml @@ -19,6 +19,10 @@ render-bookdown: yes render-leanpub: yes render-coursera: no +## Automate the creation of Book.txt file? TRUE/FALSE? +## This is only relevant if render-leanpub is yes, otherwise it will be ignored +make-book-txt: TRUE + # What docker image should be used for rendering? # The default is jhudsl/base_ottr:main rendering-docker-image: 'jhudsl/base_ottr:main' From ea857d20bdfe84dc7e77cccb96e891e0c999fba9 Mon Sep 17 00:00:00 2001 From: cansavvy Date: Fri, 26 Jan 2024 18:43:49 +0000 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=94=84=20Synced=20local=20'.github/wo?= =?UTF-8?q?rkflows/delete-preview.yml'=20with=20remote=20'.github/workflow?= =?UTF-8?q?s/delete-preview.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release-null --- .github/workflows/delete-preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/delete-preview.yml b/.github/workflows/delete-preview.yml index afd658a..faa83cc 100644 --- a/.github/workflows/delete-preview.yml +++ b/.github/workflows/delete-preview.yml @@ -18,7 +18,7 @@ jobs: # Check out current repository - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 From 2bf2debba3b675b27798760013eb7bde0254af8d Mon Sep 17 00:00:00 2001 From: cansavvy Date: Fri, 26 Jan 2024 18:43:49 +0000 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=94=84=20Synced=20local=20'.github/wo?= =?UTF-8?q?rkflows/send-updates.yml'=20with=20remote=20'.github/workflows/?= =?UTF-8?q?send-updates.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release-null --- .github/workflows/send-updates.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/send-updates.yml b/.github/workflows/send-updates.yml index 0c4dcb9..07a0cd9 100644 --- a/.github/workflows/send-updates.yml +++ b/.github/workflows/send-updates.yml @@ -18,12 +18,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Login as jhudsl-robot run: | - git config --local user.email "itcrtrainingnetwork@gmail.com" - git config --local user.name "jhudsl-robot" + git config --global --add safe.directory $GITHUB_WORKSPACE + git config --global user.email "itcrtrainingnetwork@gmail.com" + git config --global user.name "jhudsl-robot" - name: Get the version id: get_tag From 662073a9809b939eb19467aee3fa855d944b562c Mon Sep 17 00:00:00 2001 From: cansavvy Date: Fri, 26 Jan 2024 18:43:50 +0000 Subject: [PATCH 4/5] =?UTF-8?q?=F0=9F=94=84=20Synced=20local=20'.github/wo?= =?UTF-8?q?rkflows/test-send-updates.yml'=20with=20remote=20'.github/workf?= =?UTF-8?q?lows/test-send-updates.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release-null --- .github/workflows/test-send-updates.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-send-updates.yml b/.github/workflows/test-send-updates.yml index 8c688eb..ffb1afc 100644 --- a/.github/workflows/test-send-updates.yml +++ b/.github/workflows/test-send-updates.yml @@ -22,9 +22,9 @@ jobs: - name: Login as jhudsl-robot run: | - git config --system --add safe.directory "$GITHUB_WORKSPACE" - git config --local user.email "itcrtrainingnetwork@gmail.com" - git config --local user.name "jhudsl-robot" + git config --global --add safe.directory $GITHUB_WORKSPACE + git config --global user.email "itcrtrainingnetwork@gmail.com" + git config --global user.name "jhudsl-robot" - name: Set up test-sync.yml run: | From b4b84dcbfb2538f1df342c94ce72095b808191ad Mon Sep 17 00:00:00 2001 From: cansavvy Date: Thu, 29 Feb 2024 12:02:34 -0500 Subject: [PATCH 5/5] checkout@v4 --- .github/workflows/pull_request.yml | 2 +- .github/workflows/render-both.yml | 6 +++--- .github/workflows/starting-course.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index ad731e6..5a68287 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/render-both.yml b/.github/workflows/render-both.yml index 8b775fc..60137fe 100644 --- a/.github/workflows/render-both.yml +++ b/.github/workflows/render-both.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Use the yaml-env-action action. - name: Load environment from YAML @@ -42,7 +42,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 token: ${{ secrets.GH_PAT }} @@ -85,7 +85,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 token: ${{ secrets.GH_PAT }} diff --git a/.github/workflows/starting-course.yml b/.github/workflows/starting-course.yml index 0ab31fc..63f5851 100644 --- a/.github/workflows/starting-course.yml +++ b/.github/workflows/starting-course.yml @@ -18,7 +18,7 @@ jobs: # Check out current repository - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0