diff --git a/.github/workflows/inter-branch-merge-flow.yml b/.github/workflows/inter-branch-merge-flow.yml new file mode 100644 index 000000000..89e1a6530 --- /dev/null +++ b/.github/workflows/inter-branch-merge-flow.yml @@ -0,0 +1,15 @@ +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 + with: + configuration_file_branch: 'release/8.0.4xx' \ No newline at end of file diff --git a/.vsts-ci.yml b/.vsts-ci.yml index cd29cedc9..fa5705869 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -110,7 +110,6 @@ extends: buildArchitecture: x64 additionalBuildParameters: '/p:PublishInternalAsset=true' runTests: true - # Linux - template: eng/build.yml@self parameters: @@ -214,7 +213,6 @@ extends: buildConfiguration: Release buildArchitecture: arm64 runTests: false - # Linux - template: eng/build.yml@self parameters: diff --git a/.vsts-pr.yml b/.vsts-pr.yml index 4176f4fb1..3698546de 100644 --- a/.vsts-pr.yml +++ b/.vsts-pr.yml @@ -53,10 +53,8 @@ stages: ## PR-only jobs - - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: - + - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: ## Windows - - template: eng/build-pr.yml parameters: agentOs: Windows_NT @@ -136,8 +134,8 @@ stages: linuxPortable: true runTests: true - # MacOS + # MacOS - template: eng/build-pr.yml parameters: agentOs: Darwin