Skip to content

Commit

Permalink
build: master → main
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Dec 11, 2024
1 parent d4afe09 commit 62d9abc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: main
on:
push:
branches:
- master
- main

jobs:
contributors:
Expand Down Expand Up @@ -65,5 +65,5 @@ jobs:
run: |
git config --global user.email ${{ secrets.GIT_EMAIL }}
git config --global user.name ${{ secrets.GIT_USERNAME }}
git pull origin master
git pull origin main
pnpm run release
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: pull_request
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main

jobs:
test:
if: github.ref != 'refs/heads/master'
if: github.ref != 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"prepublishOnly": "npm run build",
"release": "standard-version -a",
"release:github": "github-generate-release",
"release:tags": "git push --follow-tags origin HEAD:master",
"release:tags": "git push --follow-tags origin HEAD:main",
"test": "c8 vitest"
},
"preferGlobal": true,
Expand Down

0 comments on commit 62d9abc

Please sign in to comment.