Skip to content

Bump happy-dom from 20.0.0 to 20.0.2 in /src/vscode-bicep-ui #5126

Bump happy-dom from 20.0.0 to 20.0.2 in /src/vscode-bicep-ui

Bump happy-dom from 20.0.0 to 20.0.2 in /src/vscode-bicep-ui #5126

Workflow file for this run

name: PR Compliance
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened, labeled, unlabeled]
jobs:
check-for-docs-label:
name: Check for Docs label
if: ${{ !(contains(github.event.pull_request.labels.*.name, '📘 Docs Needed') || contains(github.event.pull_request.labels.*.name, '📘 Docs Not Needed') || contains(github.event.pull_request.labels.*.name, 'dependencies')) }}
runs-on: ubuntu-latest
steps:
- name: Docs label is missing
run: |
echo 'All PRs must either have the `📘 Docs Needed` or `📘 Docs Not Needed` label applied' >> $GITHUB_STEP_SUMMARY
exit 1