Skip to content

Commit

Permalink
Merge branch 'master' into users/shmittal/CreatingBlob
Browse files Browse the repository at this point in the history
  • Loading branch information
20shivangi authored May 11, 2020
2 parents 1c5e27e + 046bb0f commit 8c7a7b0
Show file tree
Hide file tree
Showing 50 changed files with 1,778 additions and 173 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/autoAssignABTT.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Assign ABTT to Project Board

on:
issues:
types: [opened, labeled]
env:
MY_GITHUB_TOKEN: ${{ secrets.ABTT_TOKEN }}

jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to ABTT Project
steps:
- name: "Assign issues with 'Area: ABTT' label to project board"
uses: srggrs/assign-one-project-github-action@1.2.0
if: |
contains(github.event.issue.labels.*.name, 'Area: ABTT')
with:
project: 'https://github.com/orgs/microsoft/projects/48'
column_name: 'Ready for work'
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
"loc.input.help.architecture": "Architecture",
"loc.input.label.cwd": "Working Directory",
"loc.input.help.cwd": "Current working directory where the script(not ACR) is run. Empty is the root of the repo (build) or artifacts (release), which is $(System.DefaultWorkingDirectory)",
"loc.input.label.pat": "PAT for updating the baseimage trigger",
"loc.input.help.pat": "This PAT would be passed down to the baseImageTrigger field to trigger this pipeline whenever the base image is updated",
"loc.messages.InvalidEndpointAuthScheme": "Invalid GitHub service connection scheme: %s. Only Token, OAuth and GitHub personal access token connections are allowed.",
"loc.messages.InvalidGithubEndpoint": "Invalid GitHub service endpoint: %s.",
"loc.messages.TaskConstructorFailed": "Task failed while initializing. Error: %s",
Expand Down
2 changes: 2 additions & 0 deletions Tasks/ACRTaskV0/models/acrtaskrequestbody.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ export interface IBaseImageTrigger {
status: string;
baseImageTriggerType: string;
name: string;
updateTriggerEndpoint: string;
updateTriggerPayloadType: string;
}

export interface ITrigger {
Expand Down
Loading

0 comments on commit 8c7a7b0

Please sign in to comment.