Community tasks | 新手任务清单 🎖︎ #118
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: Community Planning Updater | |
on: | |
# Trigger on milestone events | |
milestone: | |
types: [created, edited, deleted] | |
# Trigger on issue events | |
issues: | |
types: [opened, edited, deleted, transferred, milestoned, demilestoned, labeled, unlabeled, assigned, unassigned] | |
jobs: | |
plan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Milestone Planning | |
uses: elliotxx/community-planning-updater@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
planning_label: planning | |
categories: | | |
[ | |
"area/ai", | |
"area/search", | |
"area/insight", | |
"area/cluster-mgmt", | |
"area/experience", | |
"area/installation", | |
"area/performance", | |
"area/server", | |
"area/storage", | |
"area/syncer", | |
"bug", | |
"chore", | |
"enhancement", | |
"governance", | |
"security", | |
"testing", | |
"logistics", | |
"integration", | |
"documentation" | |
] |