From 2161934e5bc4c106a8b4b19418e33efe43257449 Mon Sep 17 00:00:00 2001 From: gilesb Date: Thu, 23 Nov 2023 00:41:17 +0000 Subject: [PATCH 1/9] echoing --- .github/workflows/push.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 8754689..ee4c49e 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -58,7 +58,10 @@ jobs: token: ${{ secrets.BOT_TOKEN }} # fetch-depth: '1' - id: get_head_commit_title - run: echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT + run: + - echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT + - cat $GITHUB_OUTPUT + run: echo ${{ steps.get-commit-title.outputs.text }} - uses: actions/setup-node@v3 with: node-version: '20.9.0' From 80adb8ecc5ca62a92d389ecbf3842d20cf449c38 Mon Sep 17 00:00:00 2001 From: gilesb Date: Thu, 23 Nov 2023 00:42:19 +0000 Subject: [PATCH 2/9] echoing --- .github/workflows/push.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ee4c49e..25e7392 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -58,9 +58,9 @@ jobs: token: ${{ secrets.BOT_TOKEN }} # fetch-depth: '1' - id: get_head_commit_title - run: - - echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT - - cat $GITHUB_OUTPUT + run: | + echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT + cat $GITHUB_OUTPUT run: echo ${{ steps.get-commit-title.outputs.text }} - uses: actions/setup-node@v3 with: From 04839708ea45a206fe105cdefa6871b648b1fb86 Mon Sep 17 00:00:00 2001 From: gilesb Date: Thu, 23 Nov 2023 00:43:10 +0000 Subject: [PATCH 3/9] echoing --- .github/workflows/push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 25e7392..7d57b94 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -61,7 +61,7 @@ jobs: run: | echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT cat $GITHUB_OUTPUT - run: echo ${{ steps.get-commit-title.outputs.text }} + - run: echo ${{ steps.get-commit-title.outputs.text }} - uses: actions/setup-node@v3 with: node-version: '20.9.0' From 1685e75a97b790a391583e8be7335df7a2508954 Mon Sep 17 00:00:00 2001 From: gilesb Date: Thu, 23 Nov 2023 00:51:42 +0000 Subject: [PATCH 4/9] title --- .github/workflows/push.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 7d57b94..1d3773b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -57,11 +57,12 @@ jobs: with: token: ${{ secrets.BOT_TOKEN }} # fetch-depth: '1' - - id: get_head_commit_title + - id: get-head-commit-title + name: get-title run: | echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT cat $GITHUB_OUTPUT - - run: echo ${{ steps.get-commit-title.outputs.text }} + - run: echo ${{ steps.get-head-commit-title.outputs.title }} - uses: actions/setup-node@v3 with: node-version: '20.9.0' @@ -93,7 +94,7 @@ jobs: if: steps.has-changes.outputs.changes == 'true' run: | git add -A - git commit -a -m "documented ${{ steps.get-commit-title.outputs.text }}" + git commit -a -m "documented ${{ steps.get-head-commit-title.outputs.title }}" git push origin HEAD exit 1 schema: From 7451f65032ce6b1ebf15efb9860f5b71c758c8f4 Mon Sep 17 00:00:00 2001 From: gilesb Date: Thu, 23 Nov 2023 00:54:38 +0000 Subject: [PATCH 5/9] title --- .github/workflows/pull-request-target.yml | 5 ++++- .github/workflows/push.yml | 4 +--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request-target.yml b/.github/workflows/pull-request-target.yml index f12a2df..72a82cc 100644 --- a/.github/workflows/pull-request-target.yml +++ b/.github/workflows/pull-request-target.yml @@ -59,6 +59,9 @@ jobs: node-version: '20.9.0' - run: git checkout -b ${{ github.head_ref }} - run: git pull origin ${{ github.head_ref }} + - id: get-head-commit-title + name: get-title + run: echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT - run: rm -rf document - run: mkdir document - uses: https://sigyl.com:3001/actions/ft-view-screen-document@main @@ -85,7 +88,7 @@ jobs: if: steps.has-changes.outputs.changes == 'true' run: | git add -A - git commit -a -m "documented ${{ github.event.head_commit.message }}" + git commit -a -m "documented ${{ steps.get-head-commit-title.outputs.title }}" git push origin HEAD exit 1 schema: diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1d3773b..ed4c7fd 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -59,9 +59,7 @@ jobs: # fetch-depth: '1' - id: get-head-commit-title name: get-title - run: | - echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT - cat $GITHUB_OUTPUT + run: echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT - run: echo ${{ steps.get-head-commit-title.outputs.title }} - uses: actions/setup-node@v3 with: From 25f2f9eed32334a29fe8c2ddd9ae126936930cd7 Mon Sep 17 00:00:00 2001 From: giles Date: Thu, 23 Nov 2023 00:36:20 +0000 Subject: [PATCH 6/9] Update displays/legacy-config-RSBINT_azo.xml --- displays/legacy-config-RSBINT_azo.xml | 742 +++++++++++++------------- 1 file changed, 371 insertions(+), 371 deletions(-) diff --git a/displays/legacy-config-RSBINT_azo.xml b/displays/legacy-config-RSBINT_azo.xml index 364f60b..5524164 100644 --- a/displays/legacy-config-RSBINT_azo.xml +++ b/displays/legacy-config-RSBINT_azo.xml @@ -1,371 +1,371 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 608e0f648223b00c2aafa4645601a1a028123386 Mon Sep 17 00:00:00 2001 From: giles Date: Thu, 23 Nov 2023 00:38:54 +0000 Subject: [PATCH 7/9] documented --- ft-view-screens/displays/legacy-config-rsbint_azo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft-view-screens/displays/legacy-config-rsbint_azo.md b/ft-view-screens/displays/legacy-config-rsbint_azo.md index 22e1336..ebe78e8 100644 --- a/ft-view-screens/displays/legacy-config-rsbint_azo.md +++ b/ft-view-screens/displays/legacy-config-rsbint_azo.md @@ -6,7 +6,7 @@ ## animated -### Button1 +### Button1uuuu *button* From 56337bda5f1308560ed760bb120ebacda2daeaea Mon Sep 17 00:00:00 2001 From: giles Date: Thu, 23 Nov 2023 01:00:01 +0000 Subject: [PATCH 8/9] Update displays/legacy-config-RSBINT.xml --- displays/legacy-config-RSBINT.xml | 1030 ++++++++++++++--------------- 1 file changed, 515 insertions(+), 515 deletions(-) diff --git a/displays/legacy-config-RSBINT.xml b/displays/legacy-config-RSBINT.xml index 89f4b34..4dc5c0a 100644 --- a/displays/legacy-config-RSBINT.xml +++ b/displays/legacy-config-RSBINT.xml @@ -1,515 +1,515 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From adc0a4ffa43a18ed0ea99d0944026a01a94d384b Mon Sep 17 00:00:00 2001 From: giles Date: Thu, 23 Nov 2023 01:06:04 +0000 Subject: [PATCH 9/9] documented Update displays/legacy-config-RSBINT.xml --- ft-view-screens/displays/legacy-config-rsbint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft-view-screens/displays/legacy-config-rsbint.md b/ft-view-screens/displays/legacy-config-rsbint.md index 226dfca..63bcc97 100644 --- a/ft-view-screens/displays/legacy-config-rsbint.md +++ b/ft-view-screens/displays/legacy-config-rsbint.md @@ -6,7 +6,7 @@ ## animated -### Button1 +### Buttonqqq1 *button*