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 GitHub
parent f4fcaa6423
commit a4a6cfb39c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 8 additions and 8 deletions

View File

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

View File

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

View File

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

View File

@ -6,12 +6,12 @@ on:
pull_request: pull_request:
branches: branches:
- 'main' - 'main'
- 'branch_9x' - 'branch_10x'
push: push:
branches: branches:
- 'main' - 'main'
- 'branch_9x' - 'branch_10x'
env: env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} 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 git clone git@github.com:apache/lucene.git main
cd main cd main
# For each branch that you want a separate directory created for, add a worktree # 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 === Using the Worktrees