Skip to content

Commit 1520760

Browse files
authoredJul 25, 2024
add issue comment (Azure#29464)
1 parent 0f3dec5 commit 1520760

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
 
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Hi, this inquiry has been well received albeit being triaged as non-security related ask.
2+
3+
Azure CLI is currently prioritizing direct SFI requirements and items and this request does not seem to be related to SFI. We'll retain it in our backlog at this point. Please reach out to AzPyCli@microsoft.com if you'd justify it's highly customer-impacted and need to be escalated.
4+
5+
Thank you,
6+
7+
Azure CLI team
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Comment Issue when labeled non-security
2+
on:
3+
issues:
4+
types: [opened, labeled, unlabeled]
5+
6+
jobs:
7+
comment-non-security:
8+
if: contains(github.event.issue.labels.*.name, 'non-security')
9+
runs-on: ubuntu-20.04
10+
permissions:
11+
issues: write
12+
name: Comment on issue
13+
steps:
14+
- name: Checkout comment message
15+
uses: actions/checkout@v4
16+
with:
17+
sparse-checkout: |
18+
.github/template/non-security-comment.md
19+
- name: Comment on issue with no security label
20+
uses: mshick/add-pr-comment@v2
21+
with:
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}
23+
message-id: issueNoSecurityCommentBot
24+
message-path: |
25+
.github/template/non-security-comment.md

0 commit comments

Comments
 (0)
Please sign in to comment.