Skip to content

Scan For To Do Comments #2094

Scan For To Do Comments

Scan For To Do Comments #2094

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@65462800fd760344b1a7b4382951275a0abb4808
with:
name: issue-todo
path: issue/