We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e5eacf commit 72f1b93Copy full SHA for 72f1b93
1 file changed
.github/workflows/gcp-check-boost.yml
@@ -0,0 +1,23 @@
1
+name: GCP Check Boost
2
+on: [push]
3
+
4
+jobs:
5
+ check:
6
+ runs-on: ubuntu-latest
7
+ environment: GCP-Rozen
8
+ permissions:
9
+ contents: 'read'
10
+ id-token: 'write'
11
12
+ steps:
13
+ - name: Authenticate Cloud CLI
14
+ uses: 'google-github-actions/auth@v2'
15
+ with:
16
+ credentials_json: ${{ secrets.GCP_SA_KEY }}
17
18
+ - name: Set up Cloud SDK
19
+ uses: 'google-github-actions/setup-gcloud@v2'
20
21
+ - name: Check CPU Boost
22
+ run: |
23
+ gcloud run services describe dcubabot --region=us-central1 --format="value(spec.template.metadata.annotations['run.googleapis.com/startup-cpu-boost'])"
0 commit comments