-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add main to release/dev18.0 flow (#77148)
* add main to release/dev18.0 flow * add workflow-dispatch
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"merge-flow-configurations": { | ||
// Merge any main changes to release/dev18.0. | ||
"main": { | ||
"MergeToBranch": "release/dev18.0", | ||
"ExtraSwitches": "-QuietComments" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Merges any changes from release/prerelease to main (e.g. servicing changes) | ||
|
||
name: Flow main to release/dev18.0 | ||
on: | ||
schedule: | ||
# once a day at 13:00 UTC to cleanup old runs | ||
- cron: '0 13 * * *' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
check-script: | ||
uses: dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@main | ||
with: | ||
configuration_file_path: '.config/branch-merge.json' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters