-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
35 lines (34 loc) · 1.02 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
name: Transfer Issue & Create Stub
description: A GitHub Action for transferring issues between github repos with the ability to create a stub issue in the original repo.
author: John Ouellet
inputs:
apply_label:
description: A label to apply on the new issue in the format "LABEL:HEXCODE"
default: false
create_stub:
description: Create a stub issue with title and description in original repo
default: false
debug:
description: Enable debug output
default: false
router:
description: A label to repo routing in the form "LABEL:REPO"
required: true
token:
description: The GitHub Personal Access Token
required: true
outputs:
destination_repo:
description: The name of the destination repo
new_issue_number:
description: The number of the new issue
new_issue_url:
description: The url of the new issue
stub_issue_number:
description: The number of the created issue stub
runs:
using: docker
image: Dockerfile
branding:
color: "purple"
icon: "arrow-right-circle"