mirror of
https://github.com/microsoft/WSL.git
synced 2026-04-11 01:27:50 -05:00
22 lines
475 B
YAML
22 lines
475 B
YAML
name: Process edited issue
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
issues:
|
|
types: [edited]
|
|
|
|
jobs:
|
|
wti:
|
|
name: Run wti
|
|
runs-on: windows-2022
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: ./.github/actions/triage
|
|
with:
|
|
issue: "${{ github.event.issue.number }}"
|
|
previous_body: "${{ github.event.changes.body.from }}"
|
|
token: ${{ secrets.GITHUB_TOKEN }} |