Replace master with main branch (#11629)

Motivation:

We should not use master as branch name, better to switch to main

Modifications:

Replace master branch name with main

Result:

Use main as replacement for master
This commit is contained in:
Norman Maurer 2021-08-30 15:37:49 +02:00 committed by GitHub
parent d7580b526a
commit 73d2492269
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View File

@ -17,7 +17,7 @@ name: Build project
on:
push:
branches: [ "master"]
branches: [ "main"]
schedule:
- cron: '30 1 * * 1' # At 01:30 on Monday, every Monday.

View File

@ -17,7 +17,7 @@ name: Deploy project
on:
push:
branches: [ "master" ]
branches: [ "main" ]
schedule:
- cron: '30 1 * * 1' # At 01:30 on Monday, every Monday.

View File

@ -17,7 +17,7 @@ name: Build PR
on:
pull_request:
branches: [ "master"]
branches: [ "main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

View File

@ -29,7 +29,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: master
ref: main
- name: Set up JDK 11
uses: actions/setup-java@v1
@ -166,7 +166,7 @@ jobs:
working-directory: ./prepare-release-workspace/
if: ${{ failure() }}
# Rollback the release in case of an failure
run: bash ./.github/scripts/release_rollback.sh release.properties netty/netty master
run: bash ./.github/scripts/release_rollback.sh release.properties netty/netty main
deploy-staged-release:
runs-on: ubuntu-18.04
@ -246,4 +246,4 @@ jobs:
working-directory: ./prepare-release-workspace/
if: ${{ failure() }}
# Rollback the release in case of an failure
run: bash ./.github/scripts/release_rollback.sh release.properties netty/netty master
run: bash ./.github/scripts/release_rollback.sh release.properties netty/netty main

View File

@ -22,10 +22,10 @@ name: "CodeQL"
on:
push:
branches: ["4.1", master]
branches: ["4.1", main]
pull_request:
# The branches below must be a subset of the branches above
branches: ["4.1", master]
branches: ["4.1", main]
schedule:
- cron: '0 13 * * 3'