[main] Bump Microsoft.Diagnostics.DbgShim from 8.0.505301 to 8.0.510501 in /eng/dependabot/nuget.org #369
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scan For To Do Comments | |
on: | |
pull_request_review_comment: | |
types: [created] | |
issue_comment: | |
types: [created] | |
permissions: | |
pull-requests: read | |
issues: read | |
jobs: | |
scan-for-todo-issue: | |
if: startsWith(github.event.comment.body, '/TODO') && contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate artifacts | |
run: | | |
trimmed_comment=$(echo "$COMMENT_BODY" | sed 's|/TODO ||I') | |
mkdir -p ./issue | |
echo -n "$trimmed_comment" > ./issue/issue-title | |
echo -n "$COMMENT_URL" > ./issue/issue-url | |
echo -n "$COMMENT_AUTHOR" > ./issue/issue-user | |
env: | |
COMMENT_BODY: ${{ github.event.comment.body }} | |
COMMENT_URL: ${{ github.event.comment.html_url }} | |
COMMENT_AUTHOR: ${{ github.event.comment.user.login }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 | |
with: | |
name: issue-todo | |
path: issue/ |