-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
38 lines (35 loc) · 1.35 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
36
37
38
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
issue-number:
description: 'The issue number to use. Useful for triggering on PRs'
required: false
skip-if-not-in-project:
description: 'If set to "true", skip moving the issue if it is not already in the project.'
required: false
default: 'false'
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "move"
color: "blue"