Request for Clarification of How Default connection_limit and pool_timeout is calculated #1170
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 Board | |
on: | |
issues: | |
issue_comment: | |
workflow_dispatch: | |
inputs: | |
setup: | |
description: 'Populate your notion database with all the requried properties' | |
type: boolean | |
syncIssues: | |
description: 'sync all other existing issues in this repo' | |
type: boolean | |
issueType: | |
type: choice | |
description: 'The issue type you want to sync' | |
options: | |
- all | |
- open | |
- closed | |
default: open | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Notion Board | |
uses: Souvikns/[email protected] | |
with: | |
setup: ${{github.event.inputs.setup}} | |
syncIssues: ${{github.event.inputs.syncIssues}} | |
issueType: ${{github.event.inputs.issueType}} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NOTION_API_KEY: ${{ secrets.NOTION_API_KEY }} | |
NOTION_DATABASE: ${{ secrets.NOTION_DATABASE }} |