Replace branch_9x references with branch_10x in workflows (#13855)

With the move of the main branch to 11, and the upcoming sunsetting of 9x, we need to replace branch_9x references with branch_10x in workflows.
This commit is contained in:
Chris Hegarty 2024-10-04 13:51:45 +01:00 committed by ChrisHegarty
parent a29d12f417
commit 69dcf5823d
5 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ on:
push:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}

View File

@ -6,7 +6,7 @@ on:
pull_request:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
paths:
- '.github/workflows/run-checks-gradle-upgrade.yml'
- 'gradle/wrapper/**'
@ -14,7 +14,7 @@ on:
push:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
paths:
- '.github/workflows/run-checks-gradle-upgrade.yml'
- 'gradle/wrapper/**'

View File

@ -6,7 +6,7 @@ on:
pull_request:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
paths:
- '.github/workflows/run-checks-mod-analysis-common.yml'
- 'lucene/analysis/common/**'
@ -14,7 +14,7 @@ on:
push:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
paths:
- '.github/workflows/run-checks-mod-analysis-common.yml'
- 'lucene/analysis/common/**'

View File

@ -6,12 +6,12 @@ on:
pull_request:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
push:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}

View File

@ -51,7 +51,7 @@ cd lucene
git clone git@github.com:apache/lucene.git main
cd main
# For each branch that you want a separate directory created for, add a worktree
git worktree add ../9x branch_9x
git worktree add ../10x branch_10x
----
=== Using the Worktrees