We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0e0c24 commit fe05964Copy full SHA for fe05964
1 file changed
.github/workflows/gcp-scheduler-check.yml
@@ -0,0 +1,23 @@
1
+name: GCP Scheduler Check
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 Scheduler
22
+ run: |
23
+ gcloud scheduler jobs describe dcubabot-update-groups --location=us-central1 --project=dcubabot
0 commit comments