Skip to content
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

[release/9.0] Add references to new 9.0 branches in .yml files #57463

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .azure/pipelines/helix-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ schedules:
include:
- release/6.0
- release/8.0
- release/9.0
always: false

variables:
Expand Down
1 change: 1 addition & 0 deletions .azure/pipelines/identitymodel-helix-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ schedules:
include:
- main
- release/8.0
- release/9.0
always: true

variables:
Expand Down
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,15 @@ updates:
labels:
- area-infrastructure
target-branch: "release/8.0"
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "monthly"
allow:
- dependency-type: "all"
commit-message:
prefix: "[release/9.0] "
include: scope
labels:
- area-infrastructure
target-branch: "release/9.0"
34 changes: 30 additions & 4 deletions .github/policies/resourceManagement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -501,19 +501,30 @@ configuration:
branch: main
then:
- addMilestone:
milestone: 9.0-rc1
milestone: 10.0-preview1
description: '[Milestone Assignments] Assign Milestone to PRs merged to the `main` branch'
- if:
- payloadType: Pull_Request
- isAction:
action: Closed
- targetsBranch:
branch: release/9.0-preview7
branch: release/9.0-rc1
then:
- removeMilestone
- addMilestone:
milestone: 9.0-preview7
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/9.0-preview7 branch'
milestone: 9.0-rc1
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/9.0-rc1 branch'
- if:
- payloadType: Pull_Request
- isAction:
action: Closed
- targetsBranch:
branch: release/9.0
then:
- removeMilestone
- addMilestone:
milestone: 9.0-rc2
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/9.0 branch'
- if:
- payloadType: Issues
- isAction:
Expand Down Expand Up @@ -581,6 +592,21 @@ configuration:
- addReply:
reply: 'Hi @${issueAuthor}. We have added the "Needs: Author Feedback" label to this issue, which indicates that we have an open question for you before we can take further action. This issue will be closed automatically in 7 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time.'
description: Add comment when 'Needs Author Feedback' is applied to issue
- if:
- payloadType: Pull_Request
- isAction:
action: Opened
- targetsBranch:
branch: release/9.0
then:
- addMilestone:
milestone: 9.0.x
- addReply:
reply: >-
Hi @${issueAuthor}. If this is not a tell-mode PR, please make sure to follow the instructions laid out in the [servicing process](https://aka.ms/aspnet/servicing) document.

Otherwise, please add `tell-mode` label.
description: Add release/9.0 targeting PRs to the servicing project
- if:
- payloadType: Pull_Request
- isAction:
Expand Down
Loading