Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 349f25a

Browse files
committedSep 17, 2020
Create notion.yml
1 parent c1b7008 commit 349f25a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎workflows/notion.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: issue_to_notion_card
4+
5+
# Controls when the action will run. Triggers the workflow on push or pull request
6+
# events but only for the master branch
7+
on:
8+
issues:
9+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10+
jobs:
11+
# This workflow contains a single job called "build"
12+
build:
13+
# The type of runner that the job will run on
14+
runs-on: ubuntu-latest
15+
16+
# Steps represent a sequence of tasks that will be executed as part of the job
17+
steps:
18+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
19+
- uses: actions/checkout@v2
20+
21+
# Runs a single command using the runners shell
22+
- name: Notion Card Creator
23+
uses: dodo4114/issue-to-notion@v1.0.0
24+
env:
25+
NOTION_TOKEN: ${{ secrets.NOTION_TOKEN }}
26+
DATABASE_URL: https://www.notion.so/dodo4114/aebe312a066c465494fb1eb6997060b0?v=95652d72244a44bd97d39b6057c51dc0

0 commit comments

Comments
 (0)
Please sign in to comment.