-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[automated] Merge branch 'release/9.0-rc1' => 'release/9.0' #106649
Changes from 14 commits
f91cf24
5694fe0
83bac95
0784f3e
d649039
2be016b
6d543fa
e4335df
63c9565
01607d3
904fd57
a73a65b
2a9d9bc
f028127
d89cc99
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Inter-branch merge workflow | ||
on: | ||
push: | ||
branches: | ||
- release/** | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
Merge: | ||
uses: dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@main |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,12 +41,13 @@ extends: | |
# Localization build | ||
# | ||
|
||
- template: /eng/common/templates-official/job/onelocbuild.yml | ||
parameters: | ||
MirrorRepo: runtime | ||
MirrorBranch: main | ||
LclSource: lclFilesfromPackage | ||
LclPackageId: 'LCL-JUNO-PROD-RUNTIME' | ||
- ${{ if eq(variables['Build.SourceBranch'], 'refs/heads/release/9.0') }}: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @dotnet/runtime-infrastructure heads up - we will have to retarget any localization PRs that get opened for release/9.0-rc1 to target release/9.0 instead, as the RC1 branch will be closed by the time we start getting such changes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay I think this won't be necessary. By simply notifying the loc team that they need to work in the release/9.0, they can ignore all others. |
||
- template: /eng/common/templates-official/job/onelocbuild.yml | ||
parameters: | ||
MirrorRepo: runtime | ||
MirrorBranch: release/9.0 | ||
LclSource: lclFilesfromPackage | ||
LclPackageId: 'LCL-JUNO-PROD-RUNTIME' | ||
|
||
# | ||
# Source Index Build | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@f-alizada nice, this is getting autoflowed too.