chore: test workflow

This commit is contained in:
Bryan Morgan
2026-03-03 00:20:03 -05:00
parent 925a437e1d
commit af7390b604

13
.github/workflows/test-secrets-if.yml vendored Normal file
View 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"