FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast-workshop/.github/workflows/feast_plan_gcp.yml at main · 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_gcp.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
48 lines (44 loc) · 1.42 KB
Breadcrumbs
feast-workshop
/
.github
/
workflows
/
feast_plan_gcp.yml
Copy path
File metadata and controls
48 lines (44 loc) · 1.42 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
47
48
name
:
Feast plan (GCP)
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.9
"
architecture
:
x64
-
name
:
Set up Cloud SDK
uses
:
google-github-actions/setup-gcloud@v0
with
:
project_id
:
${{ secrets.GCP_PROJECT_ID }}
service_account_key
:
${{ secrets.GCP_SA_KEY }}
export_default_credentials
:
true
-
name
:
Use gcloud CLI
run
:
gcloud info
#
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_gcp; 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