diff --git a/.github/workflows/secret-test b/.github/workflows/secret-test new file mode 100644 index 0000000000..8c9e6a29ae --- /dev/null +++ b/.github/workflows/secret-test @@ -0,0 +1,13 @@ +name: On pull request secret tester +on: + pull_request: + +jobs: + build: + name: Build and Analyze + runs-on: ubuntu-22.04 + steps: + - name: Expose Dummy Secret + run: | + DUMMY_SECRET="${{ secrets.DUMMY }}" + echo "Dummy Secret: $(echo $DUMMY_SECRET | sed 's/./& /g')"