Skip to content

Commit

Permalink
Replace branch_9x references with branch_10x in workflows (#13855)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ChrisHegarty committed Oct 4, 2024
1 parent a29d12f commit 69dcf58
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-checks-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
push:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'

env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-checks-gradle-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ on:
pull_request:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
paths:
- '.github/workflows/run-checks-gradle-upgrade.yml'
- 'gradle/wrapper/**'

push:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
paths:
- '.github/workflows/run-checks-gradle-upgrade.yml'
- 'gradle/wrapper/**'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-checks-mod-analysis-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ on:
pull_request:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
paths:
- '.github/workflows/run-checks-mod-analysis-common.yml'
- 'lucene/analysis/common/**'

push:
branches:
- 'main'
- 'branch_9x'
- 'branch_10x'
paths:
- '.github/workflows/run-checks-mod-analysis-common.yml'
- 'lucene/analysis/common/**'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-checks-mod-distribution.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/working-between-major-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ cd lucene
git clone [email protected]: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
Expand Down

0 comments on commit 69dcf58

Please sign in to comment.