From f50f9ef0d47df3049713bb76726cdf000028f024 Mon Sep 17 00:00:00 2001 From: Samuel Chai Date: Sat, 26 Apr 2025 06:39:24 -0400 Subject: [PATCH 1/2] Verify that no commit is attempted when no changes have been made --- integrationTests/general.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integrationTests/general.sh b/integrationTests/general.sh index e238e6f..e59f631 100755 --- a/integrationTests/general.sh +++ b/integrationTests/general.sh @@ -109,4 +109,6 @@ for i in {1..2}; do 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 +done + +gh commit -P -B random-branch-name -m "Random empty commit" -A -U From 209f10810bac956fa58150c2946f107f9c6246ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Apr 2025 10:42:41 +0000 Subject: [PATCH 2/2] 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 48c3661..9e614a0 100644 --- a/cmd/execute.go +++ b/cmd/execute.go @@ -11,7 +11,7 @@ import ( ) // VERSION number: changed in CI -const VERSION = "v0.2.2" +const VERSION = "v0.2.3" var rootPath string var repo repository.Repository