Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
Rename master to main (#37)
Browse files Browse the repository at this point in the history
* Update dependabot.yaml

* Update build-image.yaml

* Update main.yml

* Update release-drafter.yaml

* Update CONTRIBUTING.md
  • Loading branch information
ronjaquensel authored Jun 14, 2021
1 parent 7320915 commit da8f8b7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ updates:
directory: "/"
schedule:
interval: "daily"
target-branch: "master"
target-branch: "main"
open-pull-requests-limit: 10
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: docker-image

on:
push:
branches: [ master ]
branches: [ main ]
tags: 'v*'
release:
types: [published]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Java CI with Maven

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

concurrency:
group: ${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release Drafter
on:
push:
branches:
- master
- main

jobs:
update_release_draft:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ developer that takes on the issue. New issues should be initially marked with `s

## Branches

This repository has a `master` branch, into which all changes from other branches are merged and where
This repository has a `main` branch, into which all changes from other branches are merged and where
release versions are tagged.

After creating an issue yourself or if you want to address an existing issue, you have to create a
branch with a unique number and name that assigns it to an issue. Therefore, follow the guidelines
at https://deepsource.io/blog/git-branch-naming-conventions/. After your changes, update the
`README.md`, Wiki, and `CHANGELOG.md` with necessary details. Then, create a pull request and note
that **committing to the master is not allowed**. Please use the feature `linked issues` to link
that **committing to the main branch is not allowed**. Please use the feature `linked issues` to link
issues and pull requests.

## Commits
Expand Down

0 comments on commit da8f8b7

Please sign in to comment.