Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A GitHub action to find an issue or pull request comment

License

NotificationsYou must be signed in to change notification settings

peter-evans/find-comment

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

CIGitHub Marketplace

A GitHub action to find an issue or pull request comment.

The action will output the comment ID of the comment matching the search criteria.

Usage

Find the first comment containing the specified string

      -name:Find Commentuses:peter-evans/find-comment@v3id:fcwith:issue-number:1body-includes:search string 1

Find the first comment by the specified author

      -name:Find Commentuses:peter-evans/find-comment@v3id:fcwith:issue-number:1comment-author:peter-evans

Find the first comment containing the specified string AND by the specified author

      -name:Find Commentuses:peter-evans/find-comment@v3id:fcwith:issue-number:1comment-author:peter-evansbody-includes:search string 1

Find the first comment matching the specified regular expression

      -name:Find Commentuses:peter-evans/find-comment@v3id:fcwith:issue-number:1body-regex:'^.*search string 1.*$'

Find the last comment containing the specified string

      -name:Find Commentuses:peter-evans/find-comment@v3id:fcwith:issue-number:1body-includes:search string 1direction:last

Find the nth comment containing the specified string

      -name:Find Commentuses:peter-evans/find-comment@v3id:fcwith:issue-number:1body-includes:search string 1nth:1# second matching comment (0-indexed)

Action inputs

NameDescriptionDefault
tokenGITHUB_TOKEN or arepo scopedPAT.GITHUB_TOKEN
repositoryThe full name of the repository containing the issue or pull request.github.repository (Current repository)
issue-numberThe number of the issue or pull request in which to search.
comment-authorThe GitHub user name of the comment author.
body-includesA string to search for in the body of comments.
body-regexA regular expression to search for in the body of comments.
directionSearch direction, specified asfirst orlastfirst
nth0-indexed number, specifying which comment to return if multiple are found0

Outputs

Thecomment-id,comment-node-id,comment-body,comment-author andcomment-created-at of the matching comment found will be output for use in later steps.They will be empty strings if no matching comment was found.Note that in order to read the step outputs the action step must have an id.

Tip: Empty strings evaluate to zero in GitHub Actions expressions.e.g. Ifcomment-id is an empty stringsteps.fc.outputs.comment-id == 0 evaluates totrue.

      -name:Find Commentuses:peter-evans/find-comment@v3id:fcwith:issue-number:1body-includes:search string 1      -run:|          echo ${{ steps.fc.outputs.comment-id }}          echo ${{ steps.fc.outputs.comment-node-id }}          echo ${{ steps.fc.outputs.comment-body }}          echo ${{ steps.fc.outputs.comment-author }}          echo ${{ steps.fc.outputs.comment-created-at }}

Accessing issues and pull requests in other repositories

You can search the comments of issues and pull requests in another repository by using aPAT instead ofGITHUB_TOKEN.

License

MIT


[8]ページ先頭

©2009-2025 Movatter.jp