-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
34 lines (31 loc) · 910 Bytes
/
action.yml
File metadata and controls
34 lines (31 loc) · 910 Bytes
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
name: 'Issue Importer Action'
description: 'Import issues from CSV or JSON files into a GitHub repository'
author: 'https://github.com/dsanchezcr'
branding:
icon: 'upload'
color: 'blue'
inputs:
file-path:
description: 'Path to the CSV or JSON file containing issues to import'
required: true
file-format:
description: 'Format of the input file (csv or json)'
required: true
default: 'csv'
github-token:
description: 'GitHub token with repository write permissions'
required: true
dry-run:
description: 'Perform a dry run without creating actual issues'
required: false
default: 'false'
outputs:
issues-created:
description: 'Number of issues successfully created'
issues-failed:
description: 'Number of issues that failed to create'
summary:
description: 'Summary of the import operation'
runs:
using: 'node20'
main: 'dist/index.js'