mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-02 13:52:39 +00:00
Create CI to tag issues with needs triage (#3605)
This commit is contained in:
parent
6ebf49a9b8
commit
d4a09939d0
18
.github/workflows/issue-needs-triage.yml
vendored
Normal file
18
.github/workflows/issue-needs-triage.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
name: Label issues with needs-triage
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types:
|
||||||
|
- reopened
|
||||||
|
- opened
|
||||||
|
jobs:
|
||||||
|
label_issues:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
steps:
|
||||||
|
- run: gh issue edit "$NUMBER" --add-label "$LABELS"
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
GH_REPO: ${{ github.repository }}
|
||||||
|
NUMBER: ${{ github.event.issue.number }}
|
||||||
|
LABELS: needs-triage
|
Loading…
x
Reference in New Issue
Block a user