From d8b12e34d3ba7a72f87f908b53aa0f027e2f12a0 Mon Sep 17 00:00:00 2001 From: Dharshan Birur Jayaprabhu Date: Mon, 10 Feb 2025 15:58:43 -0800 Subject: [PATCH] Enable Issue-Sentinel to scan for similar issues --- .github/workflows/RunIssueSentinel.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/RunIssueSentinel.yml diff --git a/.github/workflows/RunIssueSentinel.yml b/.github/workflows/RunIssueSentinel.yml new file mode 100644 index 00000000..2bb393e1 --- /dev/null +++ b/.github/workflows/RunIssueSentinel.yml @@ -0,0 +1,17 @@ +name: Run issue sentinel +on: + issues: + types: [opened, edited, closed] + +jobs: + Issue: + permissions: + issues: write + runs-on: ubuntu-latest + steps: + - name: Run Issue Sentinel + uses: Azure/issue-sentinel@v1 + with: + password: ${{secrets.ISSUE_SENTINEL_PASSWORD}} + enable-similar-issues-scanning: true # Scan for similar issues + enable-security-issues-scanning: true # Scan for security issues \ No newline at end of file