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" -