upd snippet to test CI #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
name: sync-openapi | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r tools/requirements.txt | |
- name: Install yq | |
run: | | |
YQ_VERSION=v4.44.1 | |
wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -O yq | |
chmod +x yq | |
mv yq /usr/local/bin | |
- name: Sync Docs | |
run: | | |
bash -x tools/sync-openapi.sh | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Sync OpenAPI" | |
commit_user_name: "GitHub Actions" | |
commit_user_email: "team@qdrant.com" | |
file_pattern: '*.yml' |