[Agent] 糖果 #175
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: Auto Submit Dance | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
autoflow: | |
runs-on: ubuntu-latest | |
if: github.event.label.name == '💃 Dance PR' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install deps | |
run: bun i | |
- name: Auto submit dance | |
run: bun run submitDance | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
ISSUE_NUMBER: ${{ github.event.issue.number }} |