File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1111 branches :
1212 # List of "from" branches. Targets are defined by the `find-target-branch`-step below.
1313 - releases
14- - master
14+ - main
1515
1616jobs :
1717 main :
2727 id : find-target-branch
2828 shell : sh
2929 run : |
30- if [ "${GITHUB_REF#refs/heads/}" = "master " ]; then echo '::set-output name=branch::releases/ktor2-support'; fi
30+ if [ "${GITHUB_REF#refs/heads/}" = "main " ]; then echo '::set-output name=branch::releases/ktor2-support'; fi
3131 if [ "${GITHUB_REF#refs/heads/}" = "releases" ]; then echo '::set-output name=branch::${{ github.event.repository.default_branch }}'; fi
3232
3333 # Unconditionally create a PR with the changes that needs to be manually reviewed.
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ import groovy.json.JsonOutput
1919@Library (' realm-ci' ) _
2020
2121// Branches from which we release SNAPSHOT's. Only release branches need to run on actual hardware.
22- releaseBranches = [ ' master ' , ' releases' , ' next-major' ]
22+ releaseBranches = [ ' main ' , ' releases' , ' next-major' ]
2323// Branches that are "important", so if they do not compile they will generate a Slack notification
24- slackNotificationBranches = [ ' master ' , ' releases' , ' next-major' ]
24+ slackNotificationBranches = [ ' main ' , ' releases' , ' next-major' ]
2525// Shortcut to current branch name that is being tested
2626currentBranch = (env. CHANGE_BRANCH == null ) ? env. BRANCH_NAME : env. CHANGE_BRANCH
2727
You can’t perform that action at this time.
0 commit comments