Skip to content

Commit

Permalink
Main
Browse files Browse the repository at this point in the history
  • Loading branch information
trent-codecov committed Jul 17, 2023
1 parent 04873c0 commit 068d5b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ jobs:
pip install codecov-cli
- run:
name: Run Predictor Analysis
# Comparing the current commit (HEAD) to Lowest Common Ancestor with master (BASE)
# Comparing the current commit (HEAD) to Lowest Common Ancestor with main (BASE)
# In practice this will be the base of the branch (almost all the time)
command: |
. venv/bin/activate
codecovcli label-analysis --token=$STATIC_TOKEN --base-sha=$(git merge-base HEAD^ master)
codecovcli label-analysis --token=$STATIC_TOKEN --base-sha=$(git merge-base HEAD^ main)
- run:
name: Upload smart-labels
command: |
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
pip install setuptools_rust mutmut[patch]
pip install -r tests/requirements.txt
python setup.py develop
git diff master $CIRCLE_SHA1 > data.patch
git diff main $CIRCLE_SHA1 > data.patch
mutmut run --use-patch-file data.patch || true
mkdir /tmp/artifacts;
mutmut junitxml > /tmp/artifacts/mut.xml
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ To release a new version, you need to:
- You can check the latest version on https://github.com/codecov/shared/releases
- As a rule of thumb, just add one to the micro version (number most to the right)
2) Create a new PR:
- Changing the `version` field on https://github.com/codecov/shared/blob/master/setup.py#L12 to that new version
- Change https://github.com/codecov/shared/blob/master/CHANGELOG.md unreleased header name to that version, and create a new _unreleased_ section with the same subsections.
- Changing the `version` field on https://github.com/codecov/shared/blob/main/setup.py#L12 to that new version
- Change https://github.com/codecov/shared/blob/main/CHANGELOG.md unreleased header name to that version, and create a new _unreleased_ section with the same subsections.
3) Merge that PR
4) Create a new release on https://github.com/codecov/shared/releases/new

Expand Down

0 comments on commit 068d5b1

Please sign in to comment.