Skip to content

Commit

Permalink
Rename all occurrences of master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
usimd committed Nov 6, 2024
1 parent de9c7df commit b771736
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:
- '**.md'
- 'renovate.json'
branches:
- master
- main
pull_request:
types: [ labeled, opened, synchronize, reopened ]
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Create GH release on version change
on:
push:
branches:
- master
- main

jobs:
release:
Expand Down
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: pi-gen-action-unit-tests
on:
push:
branches:
- master
- main
paths-ignore:
- '**.md'
- 'renovate.json'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![unit-tests](https://github.com/usimd/pi-gen-action/actions/workflows/test.yml/badge.svg)](https://github.com/usimd/pi-gen-action/actions/workflows/test.yml)
[![integration-tests](https://github.com/usimd/pi-gen-action/actions/workflows/integration-test.yml/badge.svg)](https://github.com/usimd/pi-gen-action/actions/workflows/integration-test.yml)
[![codecov](https://codecov.io/gh/usimd/pi-gen-action/branch/master/graph/badge.svg?token=4O680QXTOC)](https://codecov.io/gh/usimd/pi-gen-action)
[![codecov](https://codecov.io/gh/usimd/pi-gen-action/branch/main/graph/badge.svg?token=4O680QXTOC)](https://codecov.io/gh/usimd/pi-gen-action)

# pi-gen-action

Expand Down
2 changes: 1 addition & 1 deletion __test__/git.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as fs from 'fs'

describe('Git', () => {
it.each([
['master', true],
['main', true],
['non-existing-branch', false]
])('determines correctly if branch %s exists', async (branchName, exists) => {
const git = await Git.getInstance('.', '', false)
Expand Down

0 comments on commit b771736

Please sign in to comment.