Skip to content

[Contribution Process Bug]: Link to report a bug in beta version (https://aka.ms/bcpreviewbugs) not taking responses. #62

[Contribution Process Bug]: Link to report a bug in beta version (https://aka.ms/bcpreviewbugs) not taking responses.

[Contribution Process Bug]: Link to report a bug in beta version (https://aka.ms/bcpreviewbugs) not taking responses. #62

name: Dispatch AI Triage
on:
issues:
types: [opened, edited, labeled]
permissions: {}
jobs:
dispatch:
if: >-
github.event.issue.state == 'open' && (
github.event.action == 'opened' ||
github.event.action == 'edited' ||
github.event.label.name == 'ai-triage'
)
runs-on: ubuntu-latest
steps:
- name: Trigger triage on BCAppsTriage
env:
TOKEN: ${{ secrets.TRIAGE_DISPATCH_TOKEN }}
run: |
curl -s -X POST \
-H "Authorization: token $TOKEN" \
-H "Accept: application/vnd.github+json" \
https://api.github.com/repos/microsoft/BCAppsTriage/dispatches \
-d '{"event_type":"issue-triage","client_payload":{"issue_number":${{ github.event.issue.number }}}}'