We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef53704 commit 32a2b64Copy full SHA for 32a2b64
.github/workflows/trello_issue_automation.yml
@@ -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