We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6920200 commit e626f7dCopy full SHA for e626f7d
.github/workflows/issue-sentinel.yml
@@ -0,0 +1,17 @@
1
+name: Issue sentinel
2
+on:
3
+ issues:
4
+ types: [opened, edited, closed]
5
+
6
+jobs:
7
+ Issue:
8
+ permissions:
9
+ issues: write
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Run Issue Sentinel
13
+ uses: Azure/issue-sentinel@v1
14
+ with:
15
+ password: ${{secrets.ISSUE_SENTINEL_PASSWORD}}
16
+ enable-similar-issues-scanning: true # Scan similar issues in your repo, default: true
17
+ enable-security-issues-scanning: true # Scan security issues in your repo, default: false
0 commit comments