Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/taxonomy-editor-fron…
Browse files Browse the repository at this point in the history
…tend/vite-5.3.2
  • Loading branch information
teolemon authored Jul 15, 2024
2 parents 4f66ab2 + bab2ec6 commit ddc74b7
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 60 deletions.
126 changes: 68 additions & 58 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,81 +2,91 @@
# for reference, see https://github.com/actions/labeler

github:
- .github/**/*
- changed-files:
- any-glob-to-any-file: '.github/**/*'

documentation:
- CONTRIBUTING.md
- LICENSE
- README.md
- backend/README.md
- doc/how-to-guides/develop-with-neo4j.md
- doc/how-to-guides/docker-compose-setup.md
- doc/introduction/setup-dev.md
- doc/references/taxonomy-parser.md
- doc/assets/.empty
- doc/**/*
- changed-files:
- any-glob-to-any-file: 'CONTRIBUTING.md'
- any-glob-to-any-file: 'LICENSE'
- any-glob-to-any-file: 'README.md'
- any-glob-to-any-file: 'backend/README.md'
- any-glob-to-any-file: 'doc/how-to-guides/develop-with-neo4j.md'
- any-glob-to-any-file: 'doc/how-to-guides/docker-compose-setup.md'
- any-glob-to-any-file: 'doc/introduction/setup-dev.md'
- any-glob-to-any-file: 'doc/references/taxonomy-parser.md'
- any-glob-to-any-file: 'doc/assets/.empty'
- any-glob-to-any-file: 'doc/**/*'

docker:
- backend/Dockerfile
- taxonomy-editor-frontend/Dockerfile
- docker-compose.yml
- docker/dev.yml
- changed-files:
- any-glob-to-any-file: 'backend/Dockerfile'
- any-glob-to-any-file: 'taxonomy-editor-frontend/Dockerfile'
- any-glob-to-any-file: 'docker-compose.yml'
- any-glob-to-any-file: 'docker/dev.yml'

backend:
- backend/editor/__init__.py
- backend/editor/api.py
- backend/editor/entries.py
- backend/editor/exceptions.py
- backend/editor/graph_db.py
- backend/editor/models.py
- backend/editor/normalizer.py
- backend/editor/settings.py
- backend/pyproject.toml
- backend/poetry.lock
- backend/sample/load.py
- backend/sample/schema.json
- backend/sample/test-neo4j.json
- backend/sample/test.json
- backend/sample/test.txt
- backend/**/*
- changed-files:
- any-glob-to-any-file: 'backend/editor/__init__.py'
- any-glob-to-any-file: 'backend/editor/api.py'
- any-glob-to-any-file: 'backend/editor/entries.py'
- any-glob-to-any-file: 'backend/editor/exceptions.py'
- any-glob-to-any-file: 'backend/editor/graph_db.py'
- any-glob-to-any-file: 'backend/editor/models.py'
- any-glob-to-any-file: 'backend/editor/normalizer.py'
- any-glob-to-any-file: 'backend/editor/settings.py'
- any-glob-to-any-file: 'backend/pyproject.toml'
- any-glob-to-any-file: 'backend/poetry.lock'
- any-glob-to-any-file: 'backend/sample/load.py'
- any-glob-to-any-file: 'backend/sample/schema.json'
- any-glob-to-any-file: 'backend/sample/test-neo4j.json'
- any-glob-to-any-file: 'backend/sample/test.json'
- any-glob-to-any-file: 'backend/sample/test.txt'
- any-glob-to-any-file: 'backend/**/*'

frontend:
- taxonomy-editor-frontend/**/*
- changed-files:
- any-glob-to-any-file: 'taxonomy-editor-frontend/**/*'

dependencies:
- backend/pyproject.toml
- backend/poetry.lock
- parser/pyproject.toml
- parser/poetry.lock
- taxonomy-editor-frontend/package.json
- changed-files:
- any-glob-to-any-file: 'backend/pyproject.toml'
- any-glob-to-any-file: 'backend/poetry.lock'
- any-glob-to-any-file: 'parser/pyproject.toml'
- any-glob-to-any-file: 'parser/poetry.lock'
- any-glob-to-any-file: 'taxonomy-editor-frontend/package.json'

api:
- backend/editor/api.py
- changed-files:
- any-glob-to-any-file: 'backend/editor/api.py'

nginx:
- conf/nginx.conf
- changed-files:
- any-glob-to-any-file: 'conf/nginx.conf'

neo4j:
- neo4j/**/*
- changed-files:
- any-glob-to-any-file: 'neo4j/**/*'

parser:
- parser/Makefile
- parser/openfoodfacts_taxonomy_parser/__init__.py
- parser/openfoodfacts_taxonomy_parser/exception.py
- parser/openfoodfacts_taxonomy_parser/parser.py
- parser/openfoodfacts_taxonomy_parser/unparser.py
- parser/pyproject.toml
- parser/poetry.lock
- parser/setup.cfg
- parser/tests/__init__.py
- parser/tests/conftest.py
- parser/tests/data/test.txt
- parser/tests/integration/__init__.py
- parser/**/*
- changed-files:
- any-glob-to-any-file: 'parser/Makefile'
- any-glob-to-any-file: 'parser/openfoodfacts_taxonomy_parser/__init__.py'
- any-glob-to-any-file: 'parser/openfoodfacts_taxonomy_parser/exception.py'
- any-glob-to-any-file: 'parser/openfoodfacts_taxonomy_parser/parser.py'
- any-glob-to-any-file: 'parser/openfoodfacts_taxonomy_parser/unparser.py'
- any-glob-to-any-file: 'parser/pyproject.toml'
- any-glob-to-any-file: 'parser/poetry.lock'
- any-glob-to-any-file: 'parser/setup.cfg'
- any-glob-to-any-file: 'parser/tests/__init__.py'
- any-glob-to-any-file: 'parser/tests/conftest.py'
- any-glob-to-any-file: 'parser/tests/data/test.txt'
- any-glob-to-any-file: 'parser/tests/integration/__init__.py'
- any-glob-to-any-file: 'parser/**/*'

tests:
- parser/tests/__init__.py
- parser/tests/conftest.py
- parser/tests/data/test.txt
- parser/tests/integration/__init__.py
- parser/tests/**/*
- any-glob-to-any-file: 'parser/tests/__init__.py'
- any-glob-to-any-file: 'parser/tests/conftest.py'
- any-glob-to-any-file: 'parser/tests/data/test.txt'
- any-glob-to-any-file: 'parser/tests/integration/__init__.py'
- any-glob-to-any-file: 'parser/tests/**/*'
2 changes: 1 addition & 1 deletion .github/workflows/auto-assign-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
assign-author:
runs-on: ubuntu-latest
steps:
- uses: toshimaru/[email protected].0
- uses: toshimaru/[email protected].1
2 changes: 1 addition & 1 deletion .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
type=sha,format=long
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ env.build_context }}
push: true
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# managed by release-please
CHANGELOG.md
Loading

0 comments on commit ddc74b7

Please sign in to comment.