Update main to replace 4.0.x branch
This commit is contained in:
parent
907c180842
commit
4882c3707b
|
@ -3,7 +3,7 @@ on:
|
|||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- 4.0.x
|
||||
- 'main'
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
jobs:
|
||||
|
|
|
@ -2,7 +2,7 @@ name: CI
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- 4.0.x
|
||||
- 'main'
|
||||
jobs:
|
||||
ci:
|
||||
name: '${{ matrix.os.name}} | Java ${{ matrix.java.version}}'
|
||||
|
|
|
@ -2,8 +2,8 @@ name: Release Milestone
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- v3.5.0-M[0-9]
|
||||
- v3.5.0-RC[0-9]
|
||||
- v4.0.0-M[0-9]
|
||||
- v4.0.0-RC[0-9]
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
jobs:
|
||||
|
|
|
@ -2,7 +2,7 @@ name: Release
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- v3.5.[0-9]+
|
||||
- v4.0.[0-9]+
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
jobs:
|
||||
|
|
|
@ -2,7 +2,7 @@ name: Run System Tests
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- 4.0.x
|
||||
- 'main'
|
||||
jobs:
|
||||
run-system-tests:
|
||||
name: 'Java ${{ matrix.java.version}}'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: Trigger Docs Build
|
||||
on:
|
||||
push:
|
||||
branches: main
|
||||
branches: 'main'
|
||||
paths: [ 'antora/*' ]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
|
|
@ -4,7 +4,7 @@ require 'net/http'
|
|||
require 'yaml'
|
||||
require 'logger'
|
||||
|
||||
$main_branch = "3.5.x"
|
||||
$main_branch = "4.0.x"
|
||||
|
||||
$log = Logger.new(STDOUT)
|
||||
$log.level = Logger::WARN
|
||||
|
|
Loading…
Reference in New Issue