Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release Tag
on:
push:
branches:
- main
- master

jobs:
release:
Expand All @@ -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 }}"
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test

on:
pull_request:
branches: [ "main" ]
branches: [ "master" ]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down