FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast-workshop/.github/workflows/feast_plan.yml at samplePR · feast-dev/feast-workshop · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast-workshop
Public
Notifications
You must be signed in to change notification settings
Fork
57
Star
104
Code
Issues
2
Pull requests
4
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
feast-workshop
/
.github
/
workflows
/
feast_plan.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
46 lines (42 loc) · 1.37 KB
Breadcrumbs
feast-workshop
/
.github
/
workflows
/
feast_plan.yml
Copy path
File metadata and controls
46 lines (42 loc) · 1.37 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name
:
Feast plan
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.7
"
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-2
#
Run `feast plan`
-
uses
:
actions/checkout@v2
-
name
:
Install feast
run
:
pip install "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 }}
Back
|
FazBrowse Home
|
New Git URL