K8s examples break with long running builds #385
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notion Sync | |
on: | |
workflow_dispatch: | |
issues: | |
types: | |
[ | |
opened, | |
edited, | |
labeled, | |
unlabeled, | |
assigned, | |
unassigned, | |
milestoned, | |
demilestoned, | |
reopened, | |
closed, | |
] | |
permissions: read-all | |
jobs: | |
notion_job: | |
runs-on: ubuntu-latest | |
name: Add GitHub Issues to Notion | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: Add GitHub Issues to Notion | |
uses: tryfabric/notion-github-action@10c6b128faeb9a1f16efc65a0b388b7595047e62 # v1.2.3 | |
with: | |
notion-token: ${{ secrets.NOTION_TOKEN }} | |
notion-db: ${{ secrets.NOTION_DATABASE }} |