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
parent 88fcb5124b
commit 95e1a21836
2 changed files with 3 additions and 3 deletions

View File

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

View File

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