From 7394cbae5f86a418f87537215cb534d6f26e9839 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:27:30 +0000 Subject: [PATCH 1/8] Initial plan From 30ac223b5338d1c6810d93a05b205f0959dbae7a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:35:38 +0000 Subject: [PATCH 2/8] Add VERSION display to super footer using include_relative Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> --- _includes/footer.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/_includes/footer.html b/_includes/footer.html index 9bdd9223..1a58b0b9 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -32,9 +32,6 @@
- \ No newline at end of file From 7d9c0075a6c900c9d61f439dd68bcfed26110e0f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:37:24 +0000 Subject: [PATCH 3/8] Add strip filter and close paragraph tag for VERSION display Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> --- _includes/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/footer.html b/_includes/footer.html index 1a58b0b9..ac34b504 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -43,7 +43,7 @@ quality assurance conferences 2026, quality assurance conferences 2027, quality assurance conferences 2028, global qa conferences, european software testing events, north american testing conferences, test engineering summits, software testing expos, testing professionals summits, qa practitioners forums. -rev.{% include_relative ../VERSION %}. +
rev.{% include_relative ../VERSION | strip %}.
\ No newline at end of file From b8d2f6ed941076db2724f0c40427a4a1c6ca210a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:39:34 +0000 Subject: [PATCH 4/8] Use include with VERSION.txt and add GitHub Action to sync VERSION Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> --- .github/workflows/sync-version.yml | 35 ++++++++++++++++++++++++++++++ _includes/VERSION.txt | 1 + _includes/footer.html | 2 +- 3 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/sync-version.yml create mode 100644 _includes/VERSION.txt diff --git a/.github/workflows/sync-version.yml b/.github/workflows/sync-version.yml new file mode 100644 index 00000000..b1055696 --- /dev/null +++ b/.github/workflows/sync-version.yml @@ -0,0 +1,35 @@ +name: Sync VERSION to includes + +on: + push: + paths: + - 'VERSION' + branches: + - main + - master + workflow_dispatch: + +jobs: + sync-version: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Copy VERSION to _includes + run: | + cp VERSION _includes/VERSION.txt + + - name: Commit and push if changed + run: | + git config --global user.name 'github-actions[bot]' + git config --global user.email 'github-actions[bot]@users.noreply.github.com' + git add _includes/VERSION.txt + if git diff --staged --quiet; then + echo "No changes to commit" + else + git commit -m "Sync VERSION to _includes/VERSION.txt [skip ci]" + git push + fi diff --git a/_includes/VERSION.txt b/_includes/VERSION.txt new file mode 100644 index 00000000..37021f4a --- /dev/null +++ b/_includes/VERSION.txt @@ -0,0 +1 @@ +1500 \ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html index ac34b504..14fd538c 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -43,7 +43,7 @@ quality assurance conferences 2026, quality assurance conferences 2027, quality assurance conferences 2028, global qa conferences, european software testing events, north american testing conferences, test engineering summits, software testing expos, testing professionals summits, qa practitioners forums. -rev.{% include_relative ../VERSION | strip %}.
+rev.{% include VERSION.txt | strip %}.
\ No newline at end of file From e6e41c21ace05a8195d444686faaafaca3b8b693 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:40:16 +0000 Subject: [PATCH 5/8] Fix Jekyll include syntax Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> --- _includes/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/footer.html b/_includes/footer.html index 14fd538c..6dab3990 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -43,7 +43,7 @@ quality assurance conferences 2026, quality assurance conferences 2027, quality assurance conferences 2028, global qa conferences, european software testing events, north american testing conferences, test engineering summits, software testing expos, testing professionals summits, qa practitioners forums. -rev.{% include VERSION.txt | strip %}.
+rev.{% include VERSION.txt %}.
\ No newline at end of file From 7fffa75b00469b18c185e67ea4f1a6b970a24c08 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:41:05 +0000 Subject: [PATCH 6/8] Fix GitHub Action workflow conditional logic Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> --- .github/workflows/sync-version.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-version.yml b/.github/workflows/sync-version.yml index b1055696..6e5d5186 100644 --- a/.github/workflows/sync-version.yml +++ b/.github/workflows/sync-version.yml @@ -27,9 +27,9 @@ jobs: git config --global user.name 'github-actions[bot]' git config --global user.email 'github-actions[bot]@users.noreply.github.com' git add _includes/VERSION.txt - if git diff --staged --quiet; then - echo "No changes to commit" - else + if ! git diff --cached --exit-code > /dev/null; then git commit -m "Sync VERSION to _includes/VERSION.txt [skip ci]" git push + else + echo "No changes to commit" fi From 844fb582d92dc879ac7f38f644bfd9a3f02e1c51 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:42:08 +0000 Subject: [PATCH 7/8] Add explicit permissions to GitHub Action workflow Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> --- .github/workflows/sync-version.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync-version.yml b/.github/workflows/sync-version.yml index 6e5d5186..54bb301d 100644 --- a/.github/workflows/sync-version.yml +++ b/.github/workflows/sync-version.yml @@ -12,6 +12,8 @@ on: jobs: sync-version: runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Checkout uses: actions/checkout@v4 From 516c480ad3cf4495749de64fe219b1542af27e3c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 5 Jan 2026 00:33:03 +0000 Subject: [PATCH 8/8] Remove duplicate VERSION file and sync workflow per feedback Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> --- .github/workflows/sync-version.yml | 37 ------------------------------ VERSION | 1 - 2 files changed, 38 deletions(-) delete mode 100644 .github/workflows/sync-version.yml delete mode 100644 VERSION diff --git a/.github/workflows/sync-version.yml b/.github/workflows/sync-version.yml deleted file mode 100644 index 54bb301d..00000000 --- a/.github/workflows/sync-version.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Sync VERSION to includes - -on: - push: - paths: - - 'VERSION' - branches: - - main - - master - workflow_dispatch: - -jobs: - sync-version: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Copy VERSION to _includes - run: | - cp VERSION _includes/VERSION.txt - - - name: Commit and push if changed - run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git add _includes/VERSION.txt - if ! git diff --cached --exit-code > /dev/null; then - git commit -m "Sync VERSION to _includes/VERSION.txt [skip ci]" - git push - else - echo "No changes to commit" - fi diff --git a/VERSION b/VERSION deleted file mode 100644 index 37021f4a..00000000 --- a/VERSION +++ /dev/null @@ -1 +0,0 @@ -1500 \ No newline at end of file