-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add .gitignore & PR open/merge actions
- Loading branch information
Showing
4 changed files
with
103 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Feast apply (AWS) | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
feast_apply: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Python | ||
id: setup-python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.12" | ||
architecture: x64 | ||
- name: Set up AWS SDK | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-west-1 | ||
|
||
# Run `feast apply` | ||
- uses: actions/checkout@v2 | ||
- name: Install feast | ||
run: pip install "distutils feast[aws]" | ||
- name: Run feast apply | ||
env: | ||
FEAST_USAGE: "False" | ||
IS_TEST: "True" | ||
run: | | ||
cd module_0/feature_repo_aws | ||
feast apply |
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: Feast plan (AWS) | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
feast_plan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Python | ||
id: setup-python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.12" | ||
architecture: x64 | ||
- name: Set up AWS SDK | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-west-1 | ||
|
||
# Run `feast plan` | ||
- uses: actions/checkout@v2 | ||
- name: Install feast | ||
run: pip install "disutils feast[aws]" | ||
- name: Capture `feast plan` in a variable | ||
id: feast_plan | ||
env: | ||
FEAST_USAGE: "False" | ||
FEAST_FORCE_USAGE_UUID: None | ||
IS_TEST: "True" | ||
run: | | ||
body=$(cd module_0/feature_repo_aws; feast plan) | ||
body="${body//'%'/'%25'}" | ||
body="${body//$'\n'/'%0A'}" | ||
body="${body//$'\r'/'%0D'}" | ||
echo "::set-output name=body::$body" | ||
# Post a comment on the PR with the results of `feast plan` | ||
- name: Create comment | ||
uses: peter-evans/create-or-update-comment@v1 | ||
if: ${{ steps.feast_plan.outputs.body }} | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
${{ steps.feast_plan.outputs.body }} |
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,14 @@ | ||
**/registry.db | ||
**/online.db | ||
.DS_Store | ||
**/__pycache__ | ||
terraform.tfstate | ||
terraform.tfstate.backup | ||
.terraform* | ||
*.iml | ||
**/feast-postgres-data/* | ||
**/airflow_demo/airflow_home/* | ||
.vscode/* | ||
**/derby.log | ||
**/metastore_db/* | ||
.env |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.