From 54a62a1a0d73bd6c88f49ec30c3b4e12f6e72ab1 Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Mon, 16 Dec 2024 13:19:56 -0700 Subject: [PATCH] Add generic pull_request_target GitHub Action test to build upon --- .github/workflows/preFips.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/preFips.yml diff --git a/.github/workflows/preFips.yml b/.github/workflows/preFips.yml new file mode 100644 index 0000000..41052b4 --- /dev/null +++ b/.github/workflows/preFips.yml @@ -0,0 +1,11 @@ +name: PR Target Test + +on: + pull_request_target + +jobs: + pr_target: + runs-on: ubuntu-latest + steps: + - run: echo "Hello from PR Target Test" +