docker 版无法运行 #2
This file contains hidden or 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: labeled issue to project | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| labeled-issue-to-project: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: labeled enhancement issue to project | |
| uses: alex-page/github-project-automation-plus@v0.8.1 | |
| if: ${{ contains(github.event.issue.labels.*.name, 'enhancement') }} | |
| with: | |
| project: Distributed Update System 看板 | |
| column: '服务端需求' | |
| repo-token: '${{ secrets.GH_TOKEN }}' | |
| - name: labeled Solved issue to project | |
| uses: alex-page/github-project-automation-plus@v0.8.1 | |
| if: ${{ contains(github.event.issue.labels.*.name, 'Solved') }} | |
| with: | |
| project: Distributed Update System 看板 | |
| column: '服务端已完成' | |
| repo-token: '${{ secrets.GH_TOKEN }}' | |
| - name: labeled bug issue to project | |
| uses: alex-page/github-project-automation-plus@v0.8.1 | |
| if: ${{ contains(github.event.issue.labels.*.name, 'bug') }} | |
| with: | |
| project: Distributed Update System 看板 | |
| column: 'BUG' | |
| repo-token: '${{ secrets.GH_TOKEN }}' |