From c84dc0dcb47bb9259733db2a81542935efda350c Mon Sep 17 00:00:00 2001 From: Weston Platter Date: Thu, 17 Apr 2025 09:58:56 -0600 Subject: [PATCH 1/2] feat: add GHA to sync issues to Notion DB --- .github/workflows/notion-sync.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/notion-sync.yaml diff --git a/.github/workflows/notion-sync.yaml b/.github/workflows/notion-sync.yaml new file mode 100644 index 0000000..a7a6328 --- /dev/null +++ b/.github/workflows/notion-sync.yaml @@ -0,0 +1,30 @@ +name: Notion Sync + +permissions: + issues: read + +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@10c6b128faeb9a1f16efc65a0b388b7595047e62 + with: + notion-token: ${{ secrets.GH_ISSUES_NOTION_TOKEN }} + notion-db: ${{ secrets.GH_ISSUES_DB_ID }} \ No newline at end of file From 06ce0ae4d29f48f040ace54394d90bcff41e45be Mon Sep 17 00:00:00 2001 From: WestonPlatter Date: Thu, 22 May 2025 13:31:56 -0600 Subject: [PATCH 2/2] fix: no, we removed this --- .github/workflows/notion-sync.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/notion-sync.yaml diff --git a/.github/workflows/notion-sync.yaml b/.github/workflows/notion-sync.yaml deleted file mode 100644 index a7a6328..0000000 --- a/.github/workflows/notion-sync.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Notion Sync - -permissions: - issues: read - -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@10c6b128faeb9a1f16efc65a0b388b7595047e62 - with: - notion-token: ${{ secrets.GH_ISSUES_NOTION_TOKEN }} - notion-db: ${{ secrets.GH_ISSUES_DB_ID }} \ No newline at end of file