forked from neo4j/neo4j-graphrag-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/neo4j/neo4j-graphrag-python
- Loading branch information
Showing
37 changed files
with
2,058 additions
and
530 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Publish a new Alpha release (x.y.0a0 -> x.y.0a1) 🚀 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
bump-version: | ||
outputs: | ||
version: ${{ steps.get-version.outputs.version }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.GIT_PUSH_PAT }} | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
version: 1.8.2 | ||
virtualenvs-create: false | ||
virtualenvs-in-project: false | ||
installer-parallel: true | ||
|
||
- name: Bump version | ||
run: poetry version prerelease | ||
|
||
- name: Get version | ||
id: get-version | ||
run: echo version=`poetry version -s` >> "$GITHUB_OUTPUT" | ||
- name: Print version | ||
run: | | ||
echo Version: ${{ steps.get-version.outputs.version }} | ||
- name: Update CHANGELOG.md (cross platform supported) | ||
run: | | ||
sed -i.bak -e 's/## Next/## Next\n\n## ${{ steps.get-version.outputs.version }}/' CHANGELOG.md && rm CHANGELOG.md.bak | ||
- uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: 'Neo4j-GraphRAG GitHub Action' | ||
author_email: '[email protected]' | ||
message: 'Bump version to ${{ steps.get-version.outputs.version }}' | ||
add: "['pyproject.toml', 'CHANGELOG.md']" | ||
tag: '${{ steps.get-version.outputs.version }}' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Publish a new Alpha Major release (0.4.0 -> 1.0.0a0) 🚀 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
bump-version: | ||
outputs: | ||
version: ${{ steps.get-version.outputs.version }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.GIT_PUSH_PAT }} | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
version: 1.8.2 | ||
virtualenvs-create: false | ||
virtualenvs-in-project: false | ||
installer-parallel: true | ||
|
||
- name: Bump version | ||
run: poetry version premajor | ||
|
||
- name: Get version | ||
id: get-version | ||
run: echo version=`poetry version -s` >> "$GITHUB_OUTPUT" | ||
- name: Print version | ||
run: | | ||
echo Version: ${{ steps.get-version.outputs.version }} | ||
- name: Update CHANGELOG.md (cross platform supported) | ||
run: | | ||
sed -i.bak -e 's/## Next/## Next\n\n## ${{ steps.get-version.outputs.version }}/' CHANGELOG.md && rm CHANGELOG.md.bak | ||
- uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: 'Neo4j-GraphRAG GitHub Action' | ||
author_email: '[email protected]' | ||
message: 'Bump version to ${{ steps.get-version.outputs.version }}' | ||
add: "['pyproject.toml', 'CHANGELOG.md']" | ||
tag: '${{ steps.get-version.outputs.version }}' |
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
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
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
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
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
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
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
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
Binary file added
BIN
+31.4 KB
examples/pipeline/Harry Potter and the Chamber of Secrets Summary.pdf
Binary file not shown.
Oops, something went wrong.