mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-24 04:52:43 -07:00
chore: test workflow
This commit is contained in:
13
.github/workflows/test-secrets-if.yml
vendored
Normal file
13
.github/workflows/test-secrets-if.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
name: Test Secrets If
|
||||
on:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check Secret
|
||||
if: ${{ secrets.APP_ID != '' }}
|
||||
run: echo "Secret is not empty"
|
||||
- name: Check Secret 2
|
||||
if: secrets.APP_ID != ''
|
||||
run: echo "Secret is not empty 2"
|
||||
Reference in New Issue
Block a user