[BUG] NoClassDefFoundError when attempting to read from Vertica #545
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: 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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
with: | |
project: Backlog | |
column: High Priority | |
repo-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |