[New Feature]: Add check to Action for presence of DisplayVersion
in AppsAndFeaturesEntries
in previous versions
#1383
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: GitGudSimilarIssues comments | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
getSimilarIssues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: read | |
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.81" | |
add-comment: | |
needs: getSimilarIssues | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
if: needs.getSimilarIssues.outputs.message != '' | |
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 }} |