File tree Expand file tree Collapse file tree 1 file changed +31
-1
lines changed
Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments