utils: Skip subscriptions from PostgreSQL dumps #1
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
# Copyright © Michal Čihař <[email protected]> | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: jsonschema update | |
on: | |
push: | |
branches: | |
- deepsource-fix-** | |
- renovate/** | |
- main | |
paths: | |
- .github/workflows/schema-update.yml | |
- requirements.txt | |
- docs/Makefile | |
jobs: | |
jsonschema-update: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- run: pip install $(grep -E '^(weblate-schemas)==' requirements.txt) -r requirements-lint.txt | |
- run: make -C docs update-schemas | |
- run: pre-commit run --files $(git diff --name-only) | |
continue-on-error: true | |
- name: Update renovate branch | |
if: github.ref != 'refs/heads/main' | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: 'docs: Update JSON schemas' | |
- name: Create Pull Request | |
if: github.ref == 'refs/heads/main' | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
branch: create-pull-request/jsonschema-update | |
title: 'docs: Update JSON schemas' | |
commit-message: 'docs: Update JSON schemas' | |
labels: | | |
dependencies | |
automerge |