From 5632f2fe6737f452b4c84e196e71fcfb0f283e7c Mon Sep 17 00:00:00 2001 From: Hitesh Malhotra <68507331+CodeWithHitesh@users.noreply.github.com> Date: Mon, 14 Jul 2025 23:20:16 +0530 Subject: [PATCH] chore: update branch references to master --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 2 +- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fda6b75..b7c293f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Release Tag on: push: branches: - - main + - master jobs: release: @@ -18,7 +18,7 @@ jobs: uses: mathieudutour/github-tag-action@v6.1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - release_branches: main + release_branches: master tag_prefix: v - name: Echo created tag run: echo "Created ${{ steps.tagger.outputs.new_tag }}" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4bfaf3a..0cc2d40 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Test on: pull_request: - branches: [ "main" ] + branches: [ "master" ] jobs: build: diff --git a/README.md b/README.md index 5b2b85f..bbe89ce 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ python -m unittest test_btree.py Pull requests run a GitHub Actions workflow that executes `python -m unittest`. After the tests pass, the PR can be merged once it has been approved. -Merged commits on `main` are scanned for Conventional Commit messages. +Merged commits on `master` are scanned for Conventional Commit messages. A separate workflow uses a public GitHub Action to calculate the next semantic version and automatically push the corresponding `vX.Y.Z` tag.