File: create-pull-request.yml

package info (click to toggle)
python-azure 20251014%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 766,472 kB
  • sloc: python: 6,314,744; ansic: 804; javascript: 287; makefile: 198; sh: 198; xml: 109
file content (59 lines) | stat: -rw-r--r-- 2,254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Expects azuresdk-github-pat is set to the PAT for azure-sdk
# Expects the buildtools to be cloned

parameters:
  BaseBranchName: $(Build.SourceBranch)
  PRBranchName: not-specified
  PROwner: azure-sdk
  CommitMsg: not-specified
  RepoOwner: Azure
  RepoName: $(Build.Repository.Name)
  PushArgs:
  WorkingDirectory: $(System.DefaultWorkingDirectory)
  PRTitle: not-specified
  PRBody: ''
  ScriptDirectory: eng/common/scripts
  GHReviewers: ''
  GHTeamReviewers: ''
  GHAssignees: ''
  # Multiple labels seperated by comma, e.g. "bug, APIView"
  PRLabels: ''
  SkipCheckingForChanges: false
  CloseAfterOpenForTesting: false
  OpenAsDraft: false

steps:
- template: /eng/common/pipelines/templates/steps/git-push-changes.yml
  parameters:
    BaseRepoBranch: ${{ parameters.PRBranchName }}
    BaseRepoOwner: ${{ parameters.PROwner }}
    CommitMsg: ${{ parameters.CommitMsg }}
    TargetRepoOwner: ${{ parameters.RepoOwner }}
    TargetRepoName: ${{ parameters.RepoName }}
    PushArgs: ${{ parameters.PushArgs }}
    WorkingDirectory: ${{ parameters.WorkingDirectory }}
    ScriptDirectory: ${{ parameters.ScriptDirectory }}
    SkipCheckingForChanges: ${{ parameters.SkipCheckingForChanges }}

- task: PowerShell@2
  displayName: Create pull request
  condition: and(succeeded(), eq(variables['HasChanges'], 'true'))
  inputs:
    pwsh: true
    workingDirectory: ${{ parameters.WorkingDirectory }}
    filePath: ${{ parameters.ScriptDirectory }}/Submit-PullRequest.ps1
    arguments: >
      -RepoOwner "${{ parameters.RepoOwner }}"
      -RepoName "$(RepoNameWithoutOwner)"
      -BaseBranch "${{ parameters.BaseBranchName }}"
      -PROwner "${{ parameters.PROwner }}"
      -PRBranch "${{ parameters.PRBranchName }}"
      -AuthToken "$(azuresdk-github-pat)"
      -PRTitle "${{ parameters.PRTitle }}"
      -PRBody "${{ coalesce(parameters.PRBody, parameters.CommitMsg, parameters.PRTitle) }}"
      -PRLabels "${{ parameters.PRLabels }}"
      -UserReviewers "${{ parameters.GHReviewers }}"
      -TeamReviewers "${{ parameters.GHTeamReviewers }}"
      -Assignees "${{ parameters.GHAssignees }}"
      -CloseAfterOpenForTesting $${{ coalesce(parameters.CloseAfterOpenForTesting, 'false') }}
      -OpenAsDraft $${{ parameters.OpenAsDraft }}