Skip to content

[FEATURE] Support Spark 4.x / Java 21 to enable use of official pre-built Docker images #547

[FEATURE] Support Spark 4.x / Java 21 to enable use of official pre-built Docker images

[FEATURE] Support Spark 4.x / Java 21 to enable use of official pre-built Docker images #547

Workflow file for this run

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 }}