Skip to content

build(deps-dev): bump mock-socket from 9.0.3 to 9.3.1 in /superset-frontend #328

build(deps-dev): bump mock-socket from 9.0.3 to 9.3.1 in /superset-frontend

build(deps-dev): bump mock-socket from 9.0.3 to 9.3.1 in /superset-frontend #328

Workflow file for this run

name: Hold Label Check
on:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]
jobs:
check-hold-label:
runs-on: ubuntu-latest
steps:
- name: Check for 'hold' label
uses: actions/github-script@v3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const payload = context.payload.pull_request
const holdLabelPresent = !!payload.labels.find(label => label.name.includes('hold'))
if (holdLabelPresent) {
core.setFailed('Hold label is present, merge is blocked.')
}