Skip to content

Commit 32a2b64

Browse files
Create trello_issue_automation.yml
1 parent ef53704 commit 32a2b64

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Create Trello card for new issue
2+
3+
on:
4+
issues:
5+
types: [opened, reopened]
6+
7+
jobs:
8+
create_card:
9+
runs-on: ubuntu-latest
10+
name: Creating Trello Card
11+
steps:
12+
- name: Call trello-github-actions
13+
id: call-trello-github-actions
14+
uses: jessicazu/trello-github-actions@v1.0
15+
with:
16+
trello-action: create_card_when_issue_opened
17+
env:
18+
TRELLO_API_KEY: ${{ secrets.TRELLO_API_KEY }}
19+
TRELLO_API_TOKEN: ${{ secrets.TRELLO_API_TOKEN }}
20+
TRELLO_BOARD_ID: ${{ secrets.TRELLO_BOARD_ID }}
21+
TRELLO_LIST_ID: ${{ secrets.TRELLO_BACKLOG_LIST_ID }}

0 commit comments

Comments
 (0)