Skip to content

Commit

Permalink
Create similarissues.yml (#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigloewen-msft authored Jan 5, 2024
1 parent 445ffa2 commit e219ad4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/similarissues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: GitGudSimilarIssues comments

on:
issues:
types: [opened]

jobs:
getSimilarIssues:
runs-on: ubuntu-latest
outputs:
message: ${{ steps.getBody.outputs.message }}
steps:
- id: getBody
uses: craigloewen-msft/GitGudSimilarIssues@main
with:
issuetitle: ${{ github.event.issue.title }}
repo: ${{ github.repository }}
similaritytolerance: "0.7"
add-comment:
needs: getSimilarIssues
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add comment
run: gh issue comment "$NUMBER" --repo "$REPO" --body "$BODY"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NUMBER: ${{ github.event.issue.number }}
REPO: ${{ github.repository }}
BODY: ${{ needs.getSimilarIssues.outputs.message }}

0 comments on commit e219ad4

Please sign in to comment.