generated from shnydercom/lerna-typescript-cra-uilib-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (32 loc) · 931 Bytes
/
issue.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
name: Issue workflow
on:
issues:
types: [opened, assigned, closed]
jobs:
issue_opened:
runs-on: ubuntu-latest
steps:
- uses: alex-page/[email protected]
if: github.event.action == 'opened'
with:
project: trello-clone
column: To do
repo-token: ${{ secrets.PROJECT_TOKEN }}
issue_assigned:
runs-on: ubuntu-latest
steps:
- uses: alex-page/[email protected]
if: github.event.action == 'assigned'
with:
project: trello-clone
column: In progress
repo-token: ${{ secrets.PROJECT_TOKEN }}
issue_closed:
runs-on: ubuntu-latest
if: github.event.action == 'closed'
steps:
- uses: alex-page/[email protected]
with:
project: trello-clone
column: Done
repo-token: ${{ secrets.PROJECT_TOKEN }}