Skip to content

Commit 0fb5361

Browse files
committed
Initial commit
0 parents  commit 0fb5361

File tree

323 files changed

+73184
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

323 files changed

+73184
-0
lines changed

.github/workflows/main.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
on:
2+
issues:
3+
types: [labeled]
4+
5+
jobs:
6+
hello_world_job:
7+
runs-on: ubuntu-latest
8+
name: A job to say hello
9+
steps:
10+
# To use this repository's private action,
11+
# you must check out the repository
12+
- name: Checkout
13+
uses: actions/checkout@master
14+
- name: Move to Ready
15+
uses: ./ # Uses an action in the root directory
16+
id: hello
17+
with:
18+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
19+
label: "ready"
20+
column: "Ready"
21+
- name: Move to In Progress
22+
uses: ./
23+
with:
24+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
25+
label: "in progress"
26+
column: "In Progress"
27+
remove-label: "test, review, ready"
28+
29+
- name: Move to Unique
30+
uses: ./
31+
with:
32+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
33+
label: "unique"
34+
column: "Unique"
35+
remove-label: "ready, in progress"
36+
37+
- name: Move to Review
38+
uses: ./
39+
with:
40+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
41+
label: "review"
42+
column: "Review"
43+
remove-label: "ready, in progress"
44+
45+
- name: Move to Refl
46+
uses: ./
47+
with:
48+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
49+
label: "refl"
50+
column: "Refl"
51+
52+
53+
- name: Move to First
54+
uses: ./
55+
with:
56+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
57+
label: "good first issue"
58+
column: "First"
59+
remove-label: "ready, in progress, review"
60+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vs

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Card-automation
2+
3+
I don't know what I am doing

action.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'Project card automation'
2+
description: 'Automating project card with label and card events'
3+
author: 'Bishal Rai'
4+
inputs:
5+
repo-token:
6+
description: 'The GH_TOKEN secret can be passed in using {{ secrets.GH_TOKEN }}'
7+
required: true
8+
column:
9+
description: 'The name of the column to move the issue or pull request to'
10+
required: true
11+
label:
12+
description: 'The label that triggers the action'
13+
required: true
14+
remove-label:
15+
description: 'Label that needs to be removed'
16+
required: false
17+
18+
runs:
19+
using: 'node12'
20+
main: 'src/index.js'

node_modules/@actions/core/LICENSE.md

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/README.md

Lines changed: 209 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.d.ts

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)