generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
30 lines (27 loc) · 870 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
name: 'PR-issue Sync Action'
# when a PR is linked to an issue, issue status should change to "In review"
# when a PR is linked to an issue, all of the issue's labels should be added to the PR
# when a PR is not linked to an issue, it should be added to Project board with "In review" status
description: 'Syncs PRs with issues'
author: 'Code PushUp'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'red'
# Define your inputs here.
inputs:
github-token:
description: 'GitHub Token'
required: true
project-id:
description: 'Project ID'
required: true
status-field-id:
description: 'Status Field ID'
required: true
in-review-status-value-id:
description: 'In Review Status Value ID'
required: true
runs:
using: node20
main: dist/index.js