[FEATURE] Support Spark 4.x / Java 21 to enable use of official pre-built Docker images #547
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: Move labeled issue | |
| on: | |
| issues: | |
| types: | |
| - labeled | |
| workflow_dispatch: | |
| jobs: | |
| move-low-priority: | |
| if: github.event.label.name == 'Low Priority' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: alex-page/github-project-automation-plus@v0.8.1 | |
| with: | |
| project: Backlog | |
| column: Low Priority | |
| repo-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| move-normal-priority: | |
| if: github.event.label.name == 'Normal Priority' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: alex-page/github-project-automation-plus@v0.8.1 | |
| with: | |
| project: Backlog | |
| column: Normal Priority | |
| repo-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| move-high-priority: | |
| if: github.event.label.name == 'High Priority' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: alex-page/github-project-automation-plus@v0.8.1 | |
| with: | |
| project: Backlog | |
| column: High Priority | |
| repo-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |