Skip to content

Commit

Permalink
Rename default branch to main
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Dec 2, 2024
1 parent bad56f1 commit 4857d27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publishdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
SKIP_JAVA=1 SKIP_TYPESCRIPT=1 bash build_schema.sh
- name: Deploy Docs
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository_owner == 'galaxyproject'
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'galaxyproject'
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.GH_PAT }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/typescript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: TypeScript Continuous integration tests

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

concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ new-version: ## Mint a new version
release-local: commit-version release-aritfacts new-version

push-release: ## Push a tagged release to github
git push $(UPSTREAM) master
git push $(UPSTREAM) main
git push --tags $(UPSTREAM)

release: release-local push-release ## package, review, and upload a release
Expand Down

0 comments on commit 4857d27

Please sign in to comment.