cloudflare/Azure-Sentinel
Publicmirrored fromhttps://github.com/cloudflare/Azure-Sentinel
.github/workflows/IssueComment.yml
14lines · modecode
| 1 | name: IssueComment |
| 2 | |
| 3 | on: [issues] |
| 4 | |
| 5 | jobs: |
| 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.' }); |