From 10cc30db8b6033561aaf8eedbd644f067dccf22b Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:30:55 -0400 Subject: [PATCH 01/18] Integration tests --- integrationTests/noPR/commitAll.sh | 23 +++++++++++++++++++ integrationTests/noPR/explicitFileAddition.sh | 21 +++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 integrationTests/noPR/commitAll.sh create mode 100755 integrationTests/noPR/explicitFileAddition.sh diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh new file mode 100644 index 0000000..fecacb5 --- /dev/null +++ b/integrationTests/noPR/commitAll.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +mkdir tmp > /dev/null 2>&1 +echo "RANDOM1" > tmp/random1.txt +echo "RANDOM2" > tmp/random2.txt + +branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) + +gh commit -A -U \ + -m "Randomly commit for nightly test." \ + -B $branch + +rm -rf tmp +git fetch +git checkout $branch +git pull +cat tmp/random1.txt +cat tmp/random2.txt + +git switch - +gh api \ + -X DELETE \ + "repos/:owner/:repo/git/refs/heads/$branch" diff --git a/integrationTests/noPR/explicitFileAddition.sh b/integrationTests/noPR/explicitFileAddition.sh new file mode 100755 index 0000000..0a8cf1e --- /dev/null +++ b/integrationTests/noPR/explicitFileAddition.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +mkdir tmp > /dev/null 2>&1 +echo "RANDOM1" > tmp/random1.txt +echo "RANDOM2" > tmp/random2.txt + +branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) + +gh commit tmp/random1.txt tmp/random2.txt \ + -m "Randomly commit for nightly test." \ + -B $branch + +rm -rf tmp +git fetch +git checkout $branch +git pull +cat tmp/random1.txt +cat tmp/random2.txt + +git switch - + From 6f48f5f9e1596e0f3b0a6bb647d10da651694f17 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:33:45 -0400 Subject: [PATCH 02/18] Adding sleep to delete branch --- integrationTests/noPR/commitAll.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh index fecacb5..e2ce147 100644 --- a/integrationTests/noPR/commitAll.sh +++ b/integrationTests/noPR/commitAll.sh @@ -18,6 +18,7 @@ cat tmp/random1.txt cat tmp/random2.txt git switch - +sleep 2 gh api \ -X DELETE \ "repos/:owner/:repo/git/refs/heads/$branch" From 78211beb0b1cdaf543519baf6f31626063ad6a30 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:34:54 -0400 Subject: [PATCH 03/18] Integration tests --- integrationTests/noPR/commitAll.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh index e2ce147..7a56dda 100644 --- a/integrationTests/noPR/commitAll.sh +++ b/integrationTests/noPR/commitAll.sh @@ -19,6 +19,4 @@ cat tmp/random2.txt git switch - sleep 2 -gh api \ - -X DELETE \ - "repos/:owner/:repo/git/refs/heads/$branch" +git push origin --delete $branch From c07b1ef6e6e767e7b9fd9c036f42f6489919cc23 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:35:34 -0400 Subject: [PATCH 04/18] Integration tests --- integrationTests/noPR/commitAll.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh index 7a56dda..9726cfa 100644 --- a/integrationTests/noPR/commitAll.sh +++ b/integrationTests/noPR/commitAll.sh @@ -19,4 +19,5 @@ cat tmp/random2.txt git switch - sleep 2 +git branch -D $branch git push origin --delete $branch From 1aa4f383d96d4ebbb1efca7e14a003fc5fb9c0f2 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:40:29 -0400 Subject: [PATCH 05/18] Updating the action --- integrationTests/noPR/commitAll.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh index 9726cfa..5d42a00 100644 --- a/integrationTests/noPR/commitAll.sh +++ b/integrationTests/noPR/commitAll.sh @@ -21,3 +21,4 @@ git switch - sleep 2 git branch -D $branch git push origin --delete $branch +gh api -X DELETE repos/{owner}/{repo}/refs/heads/$branch \ No newline at end of file From bb852ec0a0759919663bef1bab4b12203a8ec9c6 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:44:02 -0400 Subject: [PATCH 06/18] Integration tests --- integrationTests/noPR/commitAll.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh index 5d42a00..e04da54 100644 --- a/integrationTests/noPR/commitAll.sh +++ b/integrationTests/noPR/commitAll.sh @@ -19,6 +19,4 @@ cat tmp/random2.txt git switch - sleep 2 -git branch -D $branch -git push origin --delete $branch -gh api -X DELETE repos/{owner}/{repo}/refs/heads/$branch \ No newline at end of file +gh api -X DELETE repos/{owner}/{repo}/git/refs/heads/$branch \ No newline at end of file From a55cb03cb8cf0c751ac782a62bd4639c0bbfa801 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:45:44 -0400 Subject: [PATCH 07/18] Integration tests --- integrationTests/noPR/commitAll.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh index e04da54..3de1b6f 100644 --- a/integrationTests/noPR/commitAll.sh +++ b/integrationTests/noPR/commitAll.sh @@ -19,4 +19,5 @@ cat tmp/random2.txt git switch - sleep 2 +gh api -X DELETE repos/{owner}/{repo}/git/refs/heads/$branch gh api -X DELETE repos/{owner}/{repo}/git/refs/heads/$branch \ No newline at end of file From ca4660f93ce7bce9a67d8498f5396d55c6d4f389 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:52:49 -0400 Subject: [PATCH 08/18] Sleeping longer --- integrationTests/noPR/commitAll.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh index 3de1b6f..bc6da57 100644 --- a/integrationTests/noPR/commitAll.sh +++ b/integrationTests/noPR/commitAll.sh @@ -18,6 +18,7 @@ cat tmp/random1.txt cat tmp/random2.txt git switch - -sleep 2 -gh api -X DELETE repos/{owner}/{repo}/git/refs/heads/$branch -gh api -X DELETE repos/{owner}/{repo}/git/refs/heads/$branch \ No newline at end of file +sleep 10 + +repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') +gh api -X DELETE repos/$repo_info/git/refs/heads/$branch \ No newline at end of file From fede1d112f3570b336f964bb19fa1cb2839a8431 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:58:23 -0400 Subject: [PATCH 09/18] Adding another sleep --- integrationTests/noPR/commitAll.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh index bc6da57..22427d6 100644 --- a/integrationTests/noPR/commitAll.sh +++ b/integrationTests/noPR/commitAll.sh @@ -10,10 +10,13 @@ gh commit -A -U \ -m "Randomly commit for nightly test." \ -B $branch +sleep 10 + rm -rf tmp + git fetch git checkout $branch -git pull + cat tmp/random1.txt cat tmp/random2.txt From 1018b3b757ad3bfaa1088548a3ac44ed3c4eeaf3 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 20:59:27 -0400 Subject: [PATCH 10/18] Updating the integration tests --- integrationTests/noPR/commitAll.sh | 27 ------------------- integrationTests/noPR/explicitFileAddition.sh | 7 ++++- 2 files changed, 6 insertions(+), 28 deletions(-) delete mode 100644 integrationTests/noPR/commitAll.sh diff --git a/integrationTests/noPR/commitAll.sh b/integrationTests/noPR/commitAll.sh deleted file mode 100644 index 22427d6..0000000 --- a/integrationTests/noPR/commitAll.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -mkdir tmp > /dev/null 2>&1 -echo "RANDOM1" > tmp/random1.txt -echo "RANDOM2" > tmp/random2.txt - -branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) - -gh commit -A -U \ - -m "Randomly commit for nightly test." \ - -B $branch - -sleep 10 - -rm -rf tmp - -git fetch -git checkout $branch - -cat tmp/random1.txt -cat tmp/random2.txt - -git switch - -sleep 10 - -repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') -gh api -X DELETE repos/$repo_info/git/refs/heads/$branch \ No newline at end of file diff --git a/integrationTests/noPR/explicitFileAddition.sh b/integrationTests/noPR/explicitFileAddition.sh index 0a8cf1e..c1ccfba 100755 --- a/integrationTests/noPR/explicitFileAddition.sh +++ b/integrationTests/noPR/explicitFileAddition.sh @@ -11,11 +11,16 @@ gh commit tmp/random1.txt tmp/random2.txt \ -B $branch rm -rf tmp + git fetch git checkout $branch -git pull + cat tmp/random1.txt cat tmp/random2.txt git switch - +sleep 10 + +repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') +gh api -X DELETE repos/$repo_info/git/refs/heads/$branch From cd4579bbd06d1871ad2d2e20bd9e7245d6747be6 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 21:05:09 -0400 Subject: [PATCH 11/18] general no pr --- integrationTests/noPR/explicitFileAddition.sh | 26 --------------- integrationTests/noPR/general.sh | 33 +++++++++++++++++++ 2 files changed, 33 insertions(+), 26 deletions(-) delete mode 100755 integrationTests/noPR/explicitFileAddition.sh create mode 100755 integrationTests/noPR/general.sh diff --git a/integrationTests/noPR/explicitFileAddition.sh b/integrationTests/noPR/explicitFileAddition.sh deleted file mode 100755 index c1ccfba..0000000 --- a/integrationTests/noPR/explicitFileAddition.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -mkdir tmp > /dev/null 2>&1 -echo "RANDOM1" > tmp/random1.txt -echo "RANDOM2" > tmp/random2.txt - -branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) - -gh commit tmp/random1.txt tmp/random2.txt \ - -m "Randomly commit for nightly test." \ - -B $branch - -rm -rf tmp - -git fetch -git checkout $branch - -cat tmp/random1.txt -cat tmp/random2.txt - -git switch - -sleep 10 - -repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') -gh api -X DELETE repos/$repo_info/git/refs/heads/$branch - diff --git a/integrationTests/noPR/general.sh b/integrationTests/noPR/general.sh new file mode 100755 index 0000000..84b457a --- /dev/null +++ b/integrationTests/noPR/general.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +for i in {1..2}; do + mkdir tmp > /dev/null 2>&1 + echo "RANDOM1" > tmp/random1.txt + echo "RANDOM2" > tmp/random2.txt + + branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) + + if [[ $i -eq 1 ]]; then + gh commit tmp/random1.txt tmp/random2.txt \ + -m "Randomly commit for nightly test." \ + -B $branch + else + gh commit -U -A \ + -m "Randomly commit for nightly test." \ + -B $branch + fi + + git fetch + git checkout $branch + + cat tmp/random1.txt + cat tmp/random2.txt + + rm -rf tmp + + git switch - + sleep 10 + + repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') + gh api -X DELETE repos/$repo_info/git/refs/heads/$branch +done From 968e4e51bb9ddc3af8cb0d62ba816d1248b4cb79 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 21:07:33 -0400 Subject: [PATCH 12/18] Fixing general.sh --- integrationTests/noPR/general.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integrationTests/noPR/general.sh b/integrationTests/noPR/general.sh index 84b457a..e073f93 100755 --- a/integrationTests/noPR/general.sh +++ b/integrationTests/noPR/general.sh @@ -1,5 +1,7 @@ #!/bin/bash +current_branch=$(git rev-parse --abbrev-ref HEAD) + for i in {1..2}; do mkdir tmp > /dev/null 2>&1 echo "RANDOM1" > tmp/random1.txt @@ -30,4 +32,5 @@ for i in {1..2}; do repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') gh api -X DELETE repos/$repo_info/git/refs/heads/$branch + git checkout $current_branch done From 1a66277a223fbcbb8ad7733fb883377ffb950e86 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 21:46:01 -0400 Subject: [PATCH 13/18] General --- integrationTests/general.sh | 109 +++++++++++++++++++++++++++++++ integrationTests/noPR/general.sh | 36 ---------- 2 files changed, 109 insertions(+), 36 deletions(-) create mode 100755 integrationTests/general.sh delete mode 100755 integrationTests/noPR/general.sh diff --git a/integrationTests/general.sh b/integrationTests/general.sh new file mode 100755 index 0000000..dac0e1a --- /dev/null +++ b/integrationTests/general.sh @@ -0,0 +1,109 @@ +#!/bin/bash + +current_branch=$(git rev-parse --abbrev-ref HEAD) + +for i in {1..2}; do + mkdir tmp > /dev/null 2>&1 + echo "RANDOM1" > tmp/random1.txt + echo "RANDOM2" > tmp/random2.txt + + branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) + + if [[ $i -eq 1 ]]; then + gh commit tmp/random1.txt tmp/random2.txt \ + -m "Randomly commit for nightly test." \ + -B $branch + else + gh commit -U -A \ + -m "Randomly commit for nightly test." \ + -B $branch + fi + + git fetch + git checkout $branch + + cat tmp/random1.txt + cat tmp/random2.txt + + rm -rf tmp + + git switch - + sleep 10 + + repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') + gh api -X DELETE repos/$repo_info/git/refs/heads/$branch + git checkout $current_branch +done + +for i in {1..2}; do + mkdir tmp > /dev/null 2>&1 + echo "RANDOM1" > tmp/random1.txt + echo "RANDOM2" > tmp/random2.txt + + branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) + + if [[ $i -eq 1 ]]; then + gh commit tmp/random1.txt tmp/random2.txt \ + -m "Randomly commit for nightly test." \ + -B $branch + else + gh commit -U -A \ + -m "Randomly commit for nightly test." \ + -B $branch + fi + + git fetch + git checkout $branch + + cat tmp/random1.txt + cat tmp/random2.txt + + rm -rf tmp + + git switch - + sleep 10 + + repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') + gh api -X DELETE repos/$repo_info/git/refs/heads/$branch + git checkout $current_branch +done + + +for i in {1..2}; do + mkdir tmp > /dev/null 2>&1 + echo "RANDOM1" > tmp/random1.txt + echo "RANDOM2" > tmp/random2.txt + + branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) + headRef=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 1000 + 1))) + + if [[ $i -eq 1 ]]; then + gh commit tmp/random1.txt tmp/random2.txt -P \ + -m "Randomly commit for nightly test." \ + -B $branch -H $headRef -T "Title of PR" + else + gh commit -U -A \ + -m "Randomly commit for nightly test." -P \ + -B $branch -H $headRef -T "Title of PR" + fi + + git fetch + git checkout $branch + + cat tmp/random1.txt + cat tmp/random2.txt + + rm -rf tmp + + git switch - + sleep 10 + + pr_number=$(gh pr list --head "$headRef" --json number -q '.[0].number') + echo $pr_number + + repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') + gh pr close $pr_number + gh api -X DELETE repos/$repo_info/git/refs/heads/$branch + gh api -X DELETE repos/$repo_info/git/refs/heads/$headRef + git checkout $current_branch +done \ No newline at end of file diff --git a/integrationTests/noPR/general.sh b/integrationTests/noPR/general.sh deleted file mode 100755 index e073f93..0000000 --- a/integrationTests/noPR/general.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -current_branch=$(git rev-parse --abbrev-ref HEAD) - -for i in {1..2}; do - mkdir tmp > /dev/null 2>&1 - echo "RANDOM1" > tmp/random1.txt - echo "RANDOM2" > tmp/random2.txt - - branch=$(echo random-nightly-branch-$(date +%F)-$((RANDOM % 100 + 1))) - - if [[ $i -eq 1 ]]; then - gh commit tmp/random1.txt tmp/random2.txt \ - -m "Randomly commit for nightly test." \ - -B $branch - else - gh commit -U -A \ - -m "Randomly commit for nightly test." \ - -B $branch - fi - - git fetch - git checkout $branch - - cat tmp/random1.txt - cat tmp/random2.txt - - rm -rf tmp - - git switch - - sleep 10 - - repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') - gh api -X DELETE repos/$repo_info/git/refs/heads/$branch - git checkout $current_branch -done From b819d1a796f222c384c58c6fed120c8867ea2aea Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 21:49:45 -0400 Subject: [PATCH 14/18] Reducing sleep --- integrationTests/general.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integrationTests/general.sh b/integrationTests/general.sh index dac0e1a..334ab10 100755 --- a/integrationTests/general.sh +++ b/integrationTests/general.sh @@ -28,7 +28,7 @@ for i in {1..2}; do rm -rf tmp git switch - - sleep 10 + sleep 1 repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') gh api -X DELETE repos/$repo_info/git/refs/heads/$branch @@ -61,7 +61,7 @@ for i in {1..2}; do rm -rf tmp git switch - - sleep 10 + sleep 1 repo_info=$(gh repo view --json owner,name -q '.owner.login + "/" + .name') gh api -X DELETE repos/$repo_info/git/refs/heads/$branch @@ -96,7 +96,7 @@ for i in {1..2}; do rm -rf tmp git switch - - sleep 10 + sleep 1 pr_number=$(gh pr list --head "$headRef" --json number -q '.[0].number') echo $pr_number From 72be9731a5686808a05e6ecd243971cda7c0b6ce Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 22:05:30 -0400 Subject: [PATCH 15/18] #minor nightly builds for maintaining --- .github/workflows/nightly.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/nightly.yaml diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml new file mode 100644 index 0000000..eb8c6e2 --- /dev/null +++ b/.github/workflows/nightly.yaml @@ -0,0 +1,28 @@ +name: Nightly check for sustainability + +on: + schedule: + - cron: "0 10 * * *" # 5 AM EST (GitHub Actions uses UTC) + workflow_dispatch: + +jobs: + run-nightly-script: + name: Run nightly sustainability check + runs-on: ubuntu-latest + + steps: + - name: Checkout default branch + uses: actions/checkout@v4 + with: + fetch-depth: 0 # optional: fetch full history if needed + + - name: Install GH extension + run: gh extension install kassett/gh-commit + shell: bash + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Run nightly script + run: ./integrationTests/general.sh + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} From dd92c9af609d0c4304d5ed1488bf548dce72c0f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 22 Apr 2025 02:07:00 +0000 Subject: [PATCH 16/18] Updating tracked Git version in source code --- cmd/execute.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/execute.go b/cmd/execute.go index e9d2e53..dad44fe 100644 --- a/cmd/execute.go +++ b/cmd/execute.go @@ -11,7 +11,7 @@ import ( ) // VERSION number: changed in CI -const VERSION = "v0.2.0" +const VERSION = "v0.3.0" var rootPath string var repo repository.Repository From ad5ed636ec865501e53f3e6c366be67041f4089b Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Mon, 21 Apr 2025 22:07:26 -0400 Subject: [PATCH 17/18] Bash --- .github/workflows/nightly.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index eb8c6e2..b21fddb 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -23,6 +23,7 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Run nightly script + shell: bash run: ./integrationTests/general.sh env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 61f6f919c5db5b02b42d124bb0335aa6ce76e51b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 22 Apr 2025 02:08:27 +0000 Subject: [PATCH 18/18] Updating tracked Git version in source code --- cmd/execute.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/execute.go b/cmd/execute.go index dad44fe..43f8aa2 100644 --- a/cmd/execute.go +++ b/cmd/execute.go @@ -11,7 +11,7 @@ import ( ) // VERSION number: changed in CI -const VERSION = "v0.3.0" +const VERSION = "v0.2.1" var rootPath string var repo repository.Repository