From 8e7fcedfacda3ae8a7654612aff49d7e55f039e9 Mon Sep 17 00:00:00 2001 From: Pedro Brochado Date: Tue, 12 May 2026 12:10:13 -0300 Subject: [PATCH] Remove docs-data update CI workflow --- .github/workflows/update-data.yml | 45 ------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/update-data.yml diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml deleted file mode 100644 index 56b4df1..0000000 --- a/.github/workflows/update-data.yml +++ /dev/null @@ -1,45 +0,0 @@ ---- -name: "Update Data Branch" - -on: - workflow_dispatch: - schedule: - - cron: "0 0 * * 0,3" # every sunday and wednesday at midnight - -jobs: - update-data: - runs-on: "ubuntu-latest" - permissions: - contents: "write" - steps: - - name: "Checkout docs-data branch" - uses: "actions/checkout@v6" - with: - ref: "docs-data" - - - name: "Set up Python" - uses: "actions/setup-python@v6" - with: - python-version: "3.12" - - - name: "List requirements" - run: | - cat requirements_ubuntu.txt - cat requirements_python.txt - - - name: "Install System dependencies" - run: | - sudo apt update - sudo apt -y install $(tr '\n' ' ' < requirements_ubuntu.txt) - - - name: "Install Python dependencies" - run: | - pip install --upgrade pip - pip install -r requirements_python.txt - - - name: "Generate openapi json files and commit/push to docs-data branch" - run: | - git config user.name github-actions - git config user.email github-action@github.com - ./update-data.sh -...