From b7fc2c1a083bac232b94628d8859c5289fbb1ad5 Mon Sep 17 00:00:00 2001 From: Zhe Wang Date: Mon, 14 Aug 2023 10:03:58 +1000 Subject: [PATCH] trigger code scan embano1/wip@v1 alert --- .github/workflows/check-wip.yml | 13 +++++++++++++ .github/workflows/github-actions-demo.yml | 4 ---- 2 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/check-wip.yml diff --git a/.github/workflows/check-wip.yml b/.github/workflows/check-wip.yml new file mode 100644 index 0000000..123e284 --- /dev/null +++ b/.github/workflows/check-wip.yml @@ -0,0 +1,13 @@ +name: Check "WIP" in PR Title + +on: + pull_request: + types: [opened, synchronize, reopened, edited] + +jobs: + check: + runs-on: ubuntu-latest + steps: + - name: Check WIP in PR Title + uses: embano1/wip@v1 + - run: echo "This should have created a security alert" diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index aacc94e..e007988 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -16,7 +16,3 @@ jobs: run: | ls ${{ github.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}." - - name: "Use vulnerability" - uses: embano1/wip@v1 - - run: echo "This should have created a security alert" -