File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments