-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
40 lines (37 loc) · 906 Bytes
/
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
37
38
39
40
name: 'intermediate branch automations'
description: 'automate merge and pull request creation in intermediate branch'
author: 'Benedict Steven'
inputs:
GITHUB_TOKEN:
description: 'GitHub Token'
required: true
SLACK_WEBHOOK_URL:
description: 'Slack webhook'
required: true
SLACK_WEBHOOK_REVIEW_URL:
description: 'slack webhook review url'
required: true
DESTINATION_BRANCH:
description: 'destination branch'
required: true
TARGET_BRANCH:
description: 'target branch'
required: true
TEAM_LEAD_ID:
description: 'team lead id'
required: false
TECH_LEAD_ID:
description: 'tech lead id'
required: false
REPO_OWNER:
description: 'repository owner'
required: true
REPO_NAME:
description: "repository name"
required: true
runs:
using: 'node16'
main: 'action/index.js'
branding:
icon: 'package'
color: 'gray-dark'