Topology get Error Pod message #33
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 Task Updater | |
on: | |
# Trigger on issue events | |
issues: | |
types: [opened, edited, deleted, transferred, milestoned, demilestoned, labeled, unlabeled, assigned, unassigned] | |
jobs: | |
osp-run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Community Tasks Updater | |
uses: elliotxx/osp-action@v1 | |
with: | |
# Optional: version of OSP to use (default: latest) | |
version: 'latest' | |
# Optional: working directory (default: project root) | |
working-directory: '.' | |
# Optional: GitHub token (default: ${{ github.token }}) | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
# Optional: enable debug mode (default: false) | |
debug: false | |
# Optional: skip caching (default: false) | |
skip-cache: false | |
# Optional: additional OSP arguments | |
args: >- | |
onboard | |
--yes | |
--onboard-labels 'help wanted,good first issue' | |
--difficulty-labels 'easy,medium,hard' | |
--category-labels area/cli,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 | |
--target-title 'Community tasks | 新手任务清单 🎖︎' | |