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 59acbd6 commit c84dc0dCopy full SHA for c84dc0d
.github/workflows/notion-sync.yaml
@@ -0,0 +1,30 @@
1
+name: Notion Sync
2
+
3
+permissions:
4
+ issues: read
5
6
+on:
7
+ workflow_dispatch:
8
+ issues:
9
+ types:
10
+ - opened
11
+ - edited
12
+ - labeled
13
+ - unlabeled
14
+ - assigned
15
+ - unassigned
16
+ - milestoned
17
+ - demilestoned
18
+ - reopened
19
+ - closed
20
21
+jobs:
22
+ notion_job:
23
+ runs-on: ubuntu-latest
24
+ name: Add GitHub Issues to Notion
25
+ steps:
26
+ - name: Add GitHub Issues to Notion
27
+ uses: tryfabric/notion-github-action@10c6b128faeb9a1f16efc65a0b388b7595047e62
28
+ with:
29
+ notion-token: ${{ secrets.GH_ISSUES_NOTION_TOKEN }}
30
+ notion-db: ${{ secrets.GH_ISSUES_DB_ID }}
0 commit comments