From 312fd4bf716f51e48151750c7b73b87a96d94a04 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 31 Mar 2026 08:14:24 +0000 Subject: [PATCH 1/2] Initial plan From 0e783af86fc0c4e0b40b1343a54f84c690114a71 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 31 Mar 2026 08:17:49 +0000 Subject: [PATCH 2/2] Bump VERSION to 1.0.2 and add create-tag workflow Agent-Logs-Url: https://github.com/axgd-code/ok_computer/sessions/8bbf72cb-4d82-49ef-964f-d3261ec446be Co-authored-by: axgd-code <1721781+axgd-code@users.noreply.github.com> --- .github/workflows/tag.yml | 31 +++++++++++++++++++++++++++++++ VERSION | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/tag.yml diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml new file mode 100644 index 0000000..05ac4b1 --- /dev/null +++ b/.github/workflows/tag.yml @@ -0,0 +1,31 @@ +name: create-tag + +on: + push: + branches: ["main"] + paths: ["VERSION"] + +jobs: + tag: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Read version + id: version + run: echo "tag=v$(xargs < VERSION)" >> "$GITHUB_OUTPUT" + + - name: Create and push tag + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + TAG="${{ steps.version.outputs.tag }}" + if git rev-parse "$TAG" >/dev/null 2>&1; then + echo "Tag $TAG already exists, skipping." + exit 0 + fi + git tag "$TAG" + git push origin "$TAG" diff --git a/VERSION b/VERSION index 7f20734..6d7de6e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.1 \ No newline at end of file +1.0.2