Skip to content

Test integration

Test integration #5

Workflow file for this run

name: Process new issue

Check failure on line 1 in .github/workflows/new_issue.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/new_issue.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
on:
pull_request: # TODO change with issue
jobs:
getSimilarIssues:
runs-on: ubuntu-latest
outputs:
message: ${{ steps.getBody.outputs.message }}
steps:
- uses: actions/checkout@v2
- id: getBody
uses: craigloewen-msft/GitGudSimilarIssues@main
with:
issueTitle: "Cannot install WSL on latest Windows Insider dev build" # Hardcoded for testing
issueBody: "Cannot install WSL on latest Windows Insider dev build" # Hardcoded for testing
repository: ${{ github.repository }}
similarityTolerance: "0.1" # Lowered value for testing
commentBody: Please view the issues below to see if they solve your problem, and if the issue describes your problem please consider closing this one and thumbs upping the other issue to help us prioritize it!
wti:
name: Run wti
needs: getSimilarIssues
runs-on: windows-2022
permissions:
issues: write
steps:
uses: ./.github/workflows/automated-triage.yml
with:
similar_issues_text: "${{ needs.getSimilarIssues.outputs.message }}"
issue: 11305