CodeCommitsIssuesPull requestsActionsInsightsSecurity
master

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/IssueComment.yml

14lines · modecode

1name: IssueComment
2
3on: [issues]
4
5jobs:
6 commenting:
7 runs-on: ubuntu-latest
8 steps:
9 - uses: actions/github-script@0.3.0
10 with:
11 github-token: ${{ secrets.GITHUB_TOKEN }}
12 script: |
13 const { issue: { number: issue_number }, repo: { owner, repo } } = context;
14 github.issues.createComment({ issue_number, owner, repo, body: 'Thank you for submitting an Issue to the Azure Sentinel GitHub repo! You should expect an initial response to your Issue from the team within 5 business days. Note that this response may be delayed during holiday periods. For urgent, production-affecting issues please raise a support ticket via the Azure Portal.' });