Skip to content

Commit 011570f

Browse files
authored
Merge pull request #38 from FullStackWithLawrence/next
chore: add mergify config
2 parents c59fe7d + 9569fff commit 011570f

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

.mergify.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# see:
2+
# - https://github.com/FullStackWithLawrence/aws-openai/settings/installations
3+
# - https://docs.mergify.com/getting-started/
4+
pull_request_rules:
5+
- name: automatic approve dependabot pull requests
6+
conditions:
7+
- "author~=dependabot[bot]|dependabot-preview[bot]|dependabot"
8+
actions:
9+
review:
10+
type: APPROVE
11+
12+
- name: automatic merge dependabot pull requests
13+
conditions:
14+
- "author~=dependabot[bot]|dependabot-preview[bot]|dependabot"
15+
- "#approved-reviews-by>=1"
16+
- "base=main" # replace 'main' with the name of the branch you want to auto-merge into
17+
actions:
18+
merge:
19+
method: merge

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# -*- coding: utf-8 -*-
2-
"""Setup for hybrid_search_retriever package."""
2+
"""Setup for openai_embeddings package."""
33
from setuptools import find_packages, setup
44

55
from setup_utils import get_semantic_version # pylint: disable=import-error
66

77

88
setup(
9-
name="hybrid_search_retriever",
9+
name="openai_embeddings",
1010
version=get_semantic_version(),
1111
description="""A Hybrid Search and Augmented Generation prompting solution using
1212
Python [OpenAI](https://openai.com/) embeddings sourced from
@@ -16,7 +16,7 @@
1616
author_email="lpm0073@gmail.com",
1717
packages=find_packages(),
1818
package_data={
19-
"hybrid_search_retriever": ["*.md"],
19+
"openai_embeddings": ["*.md"],
2020
},
2121
install_requires=[
2222
"langchain>=0.0.341",

0 commit comments

Comments
 (0)