mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-29 00:18:24 +00:00
30 lines
568 B
YAML
30 lines
568 B
YAML
name: Notion Sync
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
issues:
|
|
types:
|
|
[
|
|
opened,
|
|
edited,
|
|
labeled,
|
|
unlabeled,
|
|
assigned,
|
|
unassigned,
|
|
milestoned,
|
|
demilestoned,
|
|
reopened,
|
|
closed,
|
|
]
|
|
|
|
jobs:
|
|
notion_job:
|
|
runs-on: ubuntu-latest
|
|
name: Add GitHub Issues to Notion
|
|
steps:
|
|
- name: Add GitHub Issues to Notion
|
|
uses: tryfabric/notion-github-action@v1
|
|
with:
|
|
notion-token: ${{ secrets.NOTION_TOKEN }}
|
|
notion-db: ${{ secrets.NOTION_DATABASE }}
|