fix: add logic to slow down api calls to avoid rate limiting #202
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: Require Connector Checklist | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, labeled, unlabeled, reopened, ready_for_review] | |
paths: | |
- "airbyte-integrations/connectors/source-**" | |
- "airbyte-integrations/connectors/destination-**" | |
- "airbyte-integrations/connectors/third-party/**" | |
jobs: | |
check_for_required: | |
name: Require Connector Merge Checklist Job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Ensure All Checklist Checked | |
uses: mheap/require-checklist-action@v2 | |
with: | |
requireChecklist: false # TODO (ben) reenable in one week once pull request templates have been updated | |
- name: Send Error Message | |
if: failure() | |
run: | | |
echo "::error::All checklist items not checked. Review your PR description and comments for unchecked items." | |
exit 1 |