From 02e6feacfd95a460ea06ef0c822a373f3faf89da Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:06:46 +0100 Subject: [PATCH 01/14] tags teasa --- .gitea/workflows/develop -> build.yml | 20 +++++++++----------- .gitea/workflows/pr-closed.yml | 12 ++++++------ package.json | 3 --- 3 files changed, 15 insertions(+), 20 deletions(-) delete mode 100644 package.json diff --git a/.gitea/workflows/develop -> build.yml b/.gitea/workflows/develop -> build.yml index f11810d..049cc20 100644 --- a/.gitea/workflows/develop -> build.yml +++ b/.gitea/workflows/develop -> build.yml @@ -15,6 +15,11 @@ jobs: fetch-depth: '10' - env: env run: printenv + name: get tea + run: | + curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + chmod +x ./tea + ./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/setup-node@v3 with: node-version: '20' @@ -66,10 +71,8 @@ jobs: fi; - name: make PR run: | - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea - chmod +x ./tea - ./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} - ./tea pr ls -f=base,head -o=csv + ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} + ../tea pr ls -f=base,head -o=csv if [[ $(./tea pr ls -f=base,head -o=csv | grep "\"master\",\"${{ github.ref_name }}\"" | head -c1 | wc -c) -eq 0 ]]; then ./tea pr c --base=master --head=${{ github.ref_name }} --description=" development pull request @@ -78,15 +81,10 @@ jobs: fi - name: get PR number run: | - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea - chmod +x ./tea - pr=$(./tea pr ls -f=base,head,index -o csv | grep "\"master\",\"${{ github.ref_name }}\"" | tr -d ' ' | tr "," "\n" | head -n 4 | tail -1) + pr=$(../tea pr ls -f=base,head,index -o csv | grep "\"master\",\"${{ github.ref_name }}\"" | tr -d ' ' | tr "," "\n" | head -n 4 | tail -1) export PR="${pr//[\"\'\`]/}" echo ::set-env name=PR::$PR - rm ./tea - name: make pull request comment run: | - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea - chmod +x ./tea - ./tea c $PR "this branch has been built on [${{ env.BUILD_BRANCH }}](${{ github.serverUrl }}/${{ github.repository }}/src/branch/${{ env.BUILD_BRANCH }})" + ../tea c $PR "this branch has been built on [${{ env.BUILD_BRANCH }}](${{ github.serverUrl }}/${{ github.repository }}/src/branch/${{ env.BUILD_BRANCH }})" \ No newline at end of file diff --git a/.gitea/workflows/pr-closed.yml b/.gitea/workflows/pr-closed.yml index 4827c11..308d9b9 100644 --- a/.gitea/workflows/pr-closed.yml +++ b/.gitea/workflows/pr-closed.yml @@ -13,19 +13,19 @@ jobs: if: github.event.pull_request.merged == true runs-on: ubuntu-latest steps: + -name: get tea + run: | + curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + chmod +x ./tea + ./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 with: token: ${{ secrets.BOT_TOKEN }} - - name: 'Automated Version Bump' - uses: 'http://sigyl.com:3000/actions/gh-action-bump-version@package-json-error' - env: - GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} - with: - custom-git-domain: 'sigyl.com/git' - name: tag run: | git fetch --tags git tag -l + ../tea r ls -o=simple - name: delete develop branch id: delete_develop_branch run: git push origin --delete ${{ github.head_ref }} diff --git a/package.json b/package.json deleted file mode 100644 index 1587a66..0000000 --- a/package.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "version": "1.0.0" -} From fad0348d284c92acff51ae326d187e3a4403f57d Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:10:23 +0100 Subject: [PATCH 02/14] ..... --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c8370f3..a0ae6e5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ push deployed -pull to production PC and import. +pull to production PC and import pull to development, import, modify, export push from development to format branch From fce0636a7b0ae1a4670fcfed10cbcc8823b55493 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:13:16 +0100 Subject: [PATCH 03/14] ..... --- .gitea/workflows/develop -> build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/develop -> build.yml b/.gitea/workflows/develop -> build.yml index 049cc20..8c63fae 100644 --- a/.gitea/workflows/develop -> build.yml +++ b/.gitea/workflows/develop -> build.yml @@ -15,7 +15,7 @@ jobs: fetch-depth: '10' - env: env run: printenv - name: get tea + - name: get tea run: | curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea chmod +x ./tea From e08c5df5e763952751f0544f8b20835088f631d5 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:24:47 +0100 Subject: [PATCH 04/14] .... --- .gitea/workflows/develop -> build.yml | 8 +++----- .gitea/workflows/pr-closed.yml | 9 ++++----- .gitea/workflows/tea.yml | 18 ++++++++++++++++++ 3 files changed, 25 insertions(+), 10 deletions(-) create mode 100644 .gitea/workflows/tea.yml diff --git a/.gitea/workflows/develop -> build.yml b/.gitea/workflows/develop -> build.yml index 8c63fae..8c26095 100644 --- a/.gitea/workflows/develop -> build.yml +++ b/.gitea/workflows/develop -> build.yml @@ -16,10 +16,9 @@ jobs: - env: env run: printenv - name: get tea - run: | - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea - chmod +x ./tea - ./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} + uses: ./.github/tea.yml + secrets: + token: ${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/setup-node@v3 with: node-version: '20' @@ -71,7 +70,6 @@ jobs: fi; - name: make PR run: | - ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} ../tea pr ls -f=base,head -o=csv if [[ $(./tea pr ls -f=base,head -o=csv | grep "\"master\",\"${{ github.ref_name }}\"" | head -c1 | wc -c) -eq 0 ]]; then ./tea pr c --base=master --head=${{ github.ref_name }} --description=" diff --git a/.gitea/workflows/pr-closed.yml b/.gitea/workflows/pr-closed.yml index 308d9b9..8a24c6a 100644 --- a/.gitea/workflows/pr-closed.yml +++ b/.gitea/workflows/pr-closed.yml @@ -13,11 +13,10 @@ jobs: if: github.event.pull_request.merged == true runs-on: ubuntu-latest steps: - -name: get tea - run: | - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea - chmod +x ./tea - ./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} + - name: get tea + uses: ./.github/tea.yml + secrets: + token: ${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 with: token: ${{ secrets.BOT_TOKEN }} diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml new file mode 100644 index 0000000..e247431 --- /dev/null +++ b/.gitea/workflows/tea.yml @@ -0,0 +1,18 @@ +name: tea +run-name: tea + +on: + workflow_call: + secrets: + token: + required: true + +jobs: + tea: + runs-on: ubuntu-latest + steps: + -name: get tea + run: | + curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + chmod +x ./tea + ./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} From 9b3495004bbc2fc15c995b42597f4cad9e897cc4 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:25:34 +0100 Subject: [PATCH 05/14] .... --- .gitea/workflows/tea.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml index e247431..ef648de 100644 --- a/.gitea/workflows/tea.yml +++ b/.gitea/workflows/tea.yml @@ -14,5 +14,5 @@ jobs: -name: get tea run: | curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea - chmod +x ./tea - ./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} + chmod +x ../tea + ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} From 7039023e97f437b077a3e5a26ed80a67ecfa040a Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:26:33 +0100 Subject: [PATCH 06/14] .... --- .gitea/workflows/tea.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml index ef648de..4595d4d 100644 --- a/.gitea/workflows/tea.yml +++ b/.gitea/workflows/tea.yml @@ -13,6 +13,7 @@ jobs: steps: -name: get tea run: | + echo tea please! curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea chmod +x ../tea ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} From 2cb170aa34e8da71acffab27f01c1a3d1cd942c1 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:28:00 +0100 Subject: [PATCH 07/14] .... --- .gitea/workflows/develop -> build.yml | 2 +- .gitea/workflows/pr-closed.yml | 2 +- .gitea/workflows/tea.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/develop -> build.yml b/.gitea/workflows/develop -> build.yml index 8c26095..ee45e50 100644 --- a/.gitea/workflows/develop -> build.yml +++ b/.gitea/workflows/develop -> build.yml @@ -16,7 +16,7 @@ jobs: - env: env run: printenv - name: get tea - uses: ./.github/tea.yml + uses: ./.gitea/tea.yml secrets: token: ${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/setup-node@v3 diff --git a/.gitea/workflows/pr-closed.yml b/.gitea/workflows/pr-closed.yml index 8a24c6a..f40997f 100644 --- a/.gitea/workflows/pr-closed.yml +++ b/.gitea/workflows/pr-closed.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: get tea - uses: ./.github/tea.yml + uses: ./.gitea/tea.yml secrets: token: ${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml index 4595d4d..bb6821f 100644 --- a/.gitea/workflows/tea.yml +++ b/.gitea/workflows/tea.yml @@ -14,6 +14,6 @@ jobs: -name: get tea run: | echo tea please! - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea - chmod +x ../tea - ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} + #curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + #chmod +x ../tea + #../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} From 8cc2649dfd9609328b9a396c8d598ed923d621ad Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:30:04 +0100 Subject: [PATCH 08/14] .... --- .gitea/workflows/pr-closed.yml | 2 +- .gitea/workflows/tea.yml | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/pr-closed.yml b/.gitea/workflows/pr-closed.yml index f40997f..6a54632 100644 --- a/.gitea/workflows/pr-closed.yml +++ b/.gitea/workflows/pr-closed.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: get tea - uses: ./.gitea/tea.yml + uses: ./.gitea/workflows/tea.yml secrets: token: ${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml index bb6821f..15c6d26 100644 --- a/.gitea/workflows/tea.yml +++ b/.gitea/workflows/tea.yml @@ -14,6 +14,7 @@ jobs: -name: get tea run: | echo tea please! - #curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea - #chmod +x ../tea - #../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} + curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + chmod +x ../tea + ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} + echo thank you! From 0622450300f2b6c19a3118ac57f7cbbe8da8d3a7 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:31:02 +0100 Subject: [PATCH 09/14] .... --- .gitea/workflows/develop -> build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/develop -> build.yml b/.gitea/workflows/develop -> build.yml index ee45e50..9400357 100644 --- a/.gitea/workflows/develop -> build.yml +++ b/.gitea/workflows/develop -> build.yml @@ -16,7 +16,7 @@ jobs: - env: env run: printenv - name: get tea - uses: ./.gitea/tea.yml + uses: ./.gitea/workflows/tea.yml secrets: token: ${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/setup-node@v3 From 5516f743ca66949afa8101134f5e19ec6e39ece1 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:33:27 +0100 Subject: [PATCH 10/14] .... --- .gitea/workflows/tea.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml index 15c6d26..a4b4f09 100644 --- a/.gitea/workflows/tea.yml +++ b/.gitea/workflows/tea.yml @@ -11,7 +11,7 @@ jobs: tea: runs-on: ubuntu-latest steps: - -name: get tea + - name: get tea run: | echo tea please! curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea From d70870d87c7a72b3193c0f5d3570be2e4e9d3697 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:35:23 +0100 Subject: [PATCH 11/14] .... --- .gitea/workflows/tea.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml index a4b4f09..96f87fe 100644 --- a/.gitea/workflows/tea.yml +++ b/.gitea/workflows/tea.yml @@ -1,20 +1,18 @@ name: tea -run-name: tea on: workflow_call: secrets: token: - required: true - + required: true jobs: tea: runs-on: ubuntu-latest steps: - - name: get tea - run: | - echo tea please! - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea - chmod +x ../tea - ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} - echo thank you! + - name: get tea + run: | + echo tea please! + curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + chmod +x ../tea + ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} + echo thank you! From 63f5fe21bf629cc31f26dc0bb286a254ca0c3b21 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:42:01 +0100 Subject: [PATCH 12/14] .... --- .gitea/workflows/develop -> build.yml | 7 ++++--- .gitea/workflows/pr-closed.yml | 7 ++++--- .gitea/workflows/tea.yml | 8 ++++---- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/develop -> build.yml b/.gitea/workflows/develop -> build.yml index 9400357..a769194 100644 --- a/.gitea/workflows/develop -> build.yml +++ b/.gitea/workflows/develop -> build.yml @@ -16,9 +16,10 @@ jobs: - env: env run: printenv - name: get tea - uses: ./.gitea/workflows/tea.yml - secrets: - token: ${{ secrets.BOT_TOKEN }} + run: | + curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + chmod +x ../tea + ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} - uses: http://sigyl.com:3000/actions/setup-node@v3 with: node-version: '20' diff --git a/.gitea/workflows/pr-closed.yml b/.gitea/workflows/pr-closed.yml index 6a54632..35224e0 100644 --- a/.gitea/workflows/pr-closed.yml +++ b/.gitea/workflows/pr-closed.yml @@ -14,9 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: get tea - uses: ./.gitea/workflows/tea.yml - secrets: - token: ${{ secrets.BOT_TOKEN }} + run: | + curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + chmod +x ../tea + ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 with: token: ${{ secrets.BOT_TOKEN }} diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml index 96f87fe..645608a 100644 --- a/.gitea/workflows/tea.yml +++ b/.gitea/workflows/tea.yml @@ -12,7 +12,7 @@ jobs: - name: get tea run: | echo tea please! - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea - chmod +x ../tea - ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} - echo thank you! + #curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea + #chmod +x ../tea + #../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} + #echo thank you! From 45dc4c99919db6b824f8d7ac194cd1c6009cb482 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:43:06 +0100 Subject: [PATCH 13/14] .... --- .gitea/workflows/develop -> build.yml | 2 +- .gitea/workflows/pr-closed.yml | 2 +- .gitea/workflows/tea.yml | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/develop -> build.yml b/.gitea/workflows/develop -> build.yml index a769194..751a3ef 100644 --- a/.gitea/workflows/develop -> build.yml +++ b/.gitea/workflows/develop -> build.yml @@ -19,7 +19,7 @@ jobs: run: | curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea chmod +x ../tea - ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} + ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/setup-node@v3 with: node-version: '20' diff --git a/.gitea/workflows/pr-closed.yml b/.gitea/workflows/pr-closed.yml index 35224e0..7decd0e 100644 --- a/.gitea/workflows/pr-closed.yml +++ b/.gitea/workflows/pr-closed.yml @@ -17,7 +17,7 @@ jobs: run: | curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea chmod +x ../tea - ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} + ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 with: token: ${{ secrets.BOT_TOKEN }} diff --git a/.gitea/workflows/tea.yml b/.gitea/workflows/tea.yml index 645608a..e0e700d 100644 --- a/.gitea/workflows/tea.yml +++ b/.gitea/workflows/tea.yml @@ -16,3 +16,13 @@ jobs: #chmod +x ../tea #../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.token }} #echo thank you! +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 + with: + token: ${{ secrets.BOT_TOKEN }} + fetch-depth: '10' + - name: ls + run: ls From 7b7ae5ee36cc60b11d6341fa75366e4ac9eae234 Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 23 Oct 2023 21:44:16 +0100 Subject: [PATCH 14/14] .... --- .gitea/workflows/develop -> build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/develop -> build.yml b/.gitea/workflows/develop -> build.yml index 751a3ef..0289f02 100644 --- a/.gitea/workflows/develop -> build.yml +++ b/.gitea/workflows/develop -> build.yml @@ -73,7 +73,7 @@ jobs: run: | ../tea pr ls -f=base,head -o=csv if [[ $(./tea pr ls -f=base,head -o=csv | grep "\"master\",\"${{ github.ref_name }}\"" | head -c1 | wc -c) -eq 0 ]]; then - ./tea pr c --base=master --head=${{ github.ref_name }} --description=" + ../tea pr c --base=master --head=${{ github.ref_name }} --description=" development pull request this PR is will been built on [${{ github.ref_name }}](${{ github.serverUrl }}/${{ github.repository }}/src/branch/${{ env.BUILD_BRANCH }}) " -t="WIP: ${{ github.event.head_commit.message }}"