-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
31 lines (28 loc) · 1.08 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
name: "Move Issue to Project Column"
description: "A GitHub Action to move issues between GitHub Projects V2 columns based on labeling and unlabeling events."
author: "m7kvqbe1"
inputs:
github-token:
description: "Personal Access Token to access the repository and projects board"
required: true
project-url:
description: "The URL of the GitHub Project (V2)"
required: true
target-labels:
description: 'Comma-separated list of labels that should trigger the action (e.g., "Size: Small, Size: Medium")'
required: true
target-column:
description: 'The target column name to move the issue to when labeled (e.g., "Candidates for Ready")'
required: true
ignored-columns:
description: 'Comma-separated list of column names to ignore (e.g., "Ready, In Progress, In Review, Done")'
required: true
default-column:
description: 'The column to move the issue to when a target label is removed. If not specified, no action will be taken on unlabeling.'
required: false
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "move"
color: "blue"