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"