[Bug]: Directory Changed and workaround #365
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: Assign Issues to Projects | |
| on: | |
| issues: | |
| types: [opened, labeled] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| jobs: | |
| assign_one_project: | |
| runs-on: ubuntu-latest | |
| name: Assign to project | |
| steps: | |
| - name: potential bug assignment | |
| uses: srggrs/[email protected] | |
| if: contains(github.event.issue.labels.*.name, 'potential bug') | |
| with: | |
| project: "https://github.com/cp2004/OctoPrint-WS281x_LED_Status/projects/1" | |
| column_name: "To analyse" | |
| - name: confirmed bug assignment | |
| uses: srggrs/[email protected] | |
| if: contains(github.event.issue.labels.*.name, 'confirmed bug') | |
| with: | |
| project: "https://github.com/cp2004/OctoPrint-WS281x_LED_Status/projects/1" | |
| column_name: "To fix" | |
| - name: request assignment | |
| uses: srggrs/[email protected] | |
| if: contains(github.event.issue.labels.*.name, 'request') | |
| with: | |
| project: "https://github.com/cp2004/OctoPrint-WS281x_LED_Status/projects/2" | |
| column_name: "Needs triage" |