Skip to content

Commit 4d3e138

Browse files
authored
Update README.md
1 parent 0fb5361 commit 4d3e138

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

README.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
11
# Card-automation
22

3-
I don't know what I am doing
3+
Automate project card movement when an issue is labeled. A card will only move within a project that it is already assigned to.
4+
5+
How to use:
6+
```yml
7+
on:
8+
issues:
9+
types: [labeled]
10+
11+
jobs:
12+
automate-issues-labels:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Move to In Progress
16+
uses: bishalrai96/Project_Card_Automation@master
17+
with:
18+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
19+
label: "in progress"
20+
column: "In Progress"
21+
remove-label: "test, review, ready"
22+
23+
```
24+
25+
Expected Inputs
26+
27+
| Input | Description | Optional |
28+
| ------------- | ---------------------------------------------------------------------- | -------- |
29+
| repo-token | Github repo token | No |
30+
| label | label that triggers the the whole action | No |
31+
| column | destination column | No |
32+
| remove-label | label to remove when a card has been removed to the destination column | Yes |
33+

0 commit comments

Comments
 (0)