fix: type error in throttle mechanism (#1066) #8
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
# A workflow that sync Keep workflows from a directory | |
name: "Sync Keep Workflows" | |
on: | |
push: | |
paths: | |
- 'examples/workflows/**' | |
workflow_dispatch: | |
inputs: | |
keep_api_key: | |
description: 'Keep API Key' | |
required: false | |
keep_api_url: | |
description: 'Keep API URL' | |
required: false | |
default: 'https://api.keephq.dev' | |
jobs: | |
sync-workflows: | |
name: Sync workflows to Keep | |
runs-on: ubuntu-latest | |
# Use the Keep CLI image | |
container: | |
image: us-central1-docker.pkg.dev/keephq/keep/keep-cli:latest | |
env: | |
KEEP_API_KEY: ${{ secrets.KEEP_API_KEY || github.event.inputs.keep_api_key }} | |
KEEP_API_URL: ${{ secrets.KEEP_API_URL || github.event.inputs.keep_api_url }} | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Run Keep CLI | |
run: | | |
keep workflow apply -f examples/workflows |