From af7390b60448ee3730b05d8cbe42b72e879f6af0 Mon Sep 17 00:00:00 2001 From: Bryan Morgan Date: Tue, 3 Mar 2026 00:20:03 -0500 Subject: [PATCH] chore: test workflow --- .github/workflows/test-secrets-if.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/test-secrets-if.yml diff --git a/.github/workflows/test-secrets-if.yml b/.github/workflows/test-secrets-if.yml new file mode 100644 index 0000000000..b6027b57f6 --- /dev/null +++ b/.github/workflows/test-secrets-if.yml @@ -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"