This repository was archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
37 lines (37 loc) · 1.28 KB
/
action.yml
File metadata and controls
37 lines (37 loc) · 1.28 KB
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
name: 'GitHub Projects Column Mirror'
description: 'Reflects all changes to a source project column in a target project column'
author: 'Jon Ruskin'
inputs:
source_column_id:
description: "Id of the source project column"
required: true
target_column_id:
description: "Id of the target project column"
required: true
github_token:
description: "GitHub token to use for authenticated API calls"
required: false
default: ${{ github.token }}
type_filter:
description: "Filter to a single card type, either 'note' or 'content'"
required: false
label_filter:
description: "Filter to cards containing matching labels"
required: false
content_filter:
description: "Filter to cards with matching note content or issue/PR title"
required: false
state_filter:
description: "Filter to cards with matching issue or PR state, either 'open' or 'closed'"
required: false
automation_notice:
description: "Set to 'true' to automatically add an automation notice to the target column"
required: false
default: 'true'
source_column_notices:
description: "Set to 'true' to automatically add a \"header\" notice for each source to the target column"
required: false
default: 'true'
runs:
using: 'node12'
main: 'dist/index.js'