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

[AutoPR containerregistry/resource-manager] Add ContextPath and source location URL for encode task and run type, support for pull request based triggers #2853

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
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ type RunType = original.RunType

const (
AutoBuild RunType = original.AutoBuild
AutoRun RunType = original.AutoRun
QuickBuild RunType = original.QuickBuild
QuickRun RunType = original.QuickRun
)

type SkuName = original.SkuName
Expand Down Expand Up @@ -142,7 +144,8 @@ const (
type SourceTriggerEvent = original.SourceTriggerEvent

const (
Commit SourceTriggerEvent = original.Commit
Commit SourceTriggerEvent = original.Commit
Pullrequest SourceTriggerEvent = original.Pullrequest
)

type TaskStatus = original.TaskStatus
Expand Down
Loading