From 53810ecf9c21ca43ebab9a001b515786c876369f Mon Sep 17 00:00:00 2001 From: Erik Burton Date: Thu, 23 Jan 2025 12:22:51 -0800 Subject: [PATCH] testing: workflow --- .github/workflows/test-check-if-verified.yml | 29 ++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/test-check-if-verified.yml diff --git a/.github/workflows/test-check-if-verified.yml b/.github/workflows/test-check-if-verified.yml new file mode 100644 index 00000000..69785083 --- /dev/null +++ b/.github/workflows/test-check-if-verified.yml @@ -0,0 +1,29 @@ +name: Check If Verified Test + +on: + pull_request: + +jobs: + check-commit: + runs-on: ubuntu-latest + steps: + - uses: smartcontractkit/.github/actions/check-if-verified@feat/check-if-verified + with: + commit: ${{ github.event.pull_request.head.sha }} + assert: true + + check-lightweight-tag: + runs-on: ubuntu-latest + steps: + - uses: smartcontractkit/.github/actions/check-if-verified@feat/check-if-verified + with: + tag: "wait-for-workflow-job@0.1.0" + assert: true + + check-annotated-tag: + runs-on: ubuntu-latest + steps: + - uses: smartcontractkit/.github/actions/check-if-verified@feat/check-if-verified + with: + tag: "wait-for-workflows@0.1.0" + assert: true