-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
36 lines (36 loc) · 1.3 KB
/
action.yml
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
name: "Azure DevOps ChatOps"
description: "Create a branch in Azure DevOps from GitHub and more via ChatOps! 🚀"
author: "philip-gai"
branding:
icon: 'git-branch'
color: 'blue'
inputs:
ado_domain:
description: "The domain your ADO instance is in"
required: true
default: "dev.azure.com"
ado_org:
description: "The organization that your ADO repository is in"
required: true
ado_project:
description: "The project that your ADO repository is in"
required: true
ado_repo:
description: "The name of your ADO repository"
required: true
ado_pat:
description: "The Personal Access Token (PAT) to use when authenticating with Azure DevOps. Use a repository secret here!"
required: true
github_token:
description: "The GitHub Token to use for accessing your repos and stuff. Usually secrets.GITHUB_TOKEN"
required: true
default_source_branch:
description: "The branch from which to branch from by default. This defaults to the main branch set in ADO"
required: false
default_target_branch_type:
description: "The default branch type to use when none is specified. Valid values are user, users, bug, bugs, feature, features, release or releases. Default is feature"
required: true
default: 'feature'
runs:
using: "node12"
main: "dist/index.js"