Skip to content

Bump undici from 6.23.0 to 6.24.0 in /src/vscode-bicep #9682

Bump undici from 6.23.0 to 6.24.0 in /src/vscode-bicep

Bump undici from 6.23.0 to 6.24.0 in /src/vscode-bicep #9682

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