Skip to content

feat(redshift): Automatically add new DataFrame columns to Redshift tables during write operation #570

feat(redshift): Automatically add new DataFrame columns to Redshift tables during write operation

feat(redshift): Automatically add new DataFrame columns to Redshift tables during write operation #570

Workflow file for this run

name: Dependabot Pull Request Metadata
on: pull_request_target
jobs:
build:
permissions:
pull-requests: read
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Fetch Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
with:
alert-lookup: true
compat-lookup: true
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Add a label for all PRs with an alert state
if: ${{ steps.dependabot-metadata.outputs.alert-state != '' }}
run: gh pr edit "$PR_URL" --add-label "vulnerability"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}