Skip to content

[Snyk] Security upgrade babel-loader from 8.1.0 to 9.1.3 #46

[Snyk] Security upgrade babel-loader from 8.1.0 to 9.1.3

[Snyk] Security upgrade babel-loader from 8.1.0 to 9.1.3 #46

name: Repo Freeze Check
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
- unlocked
branches:
- main
env:
FREEZE: ${{ secrets.FREEZE }}
jobs:
check-freezer:
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
name: Prevent merging during deployment freezes
runs-on: ubuntu-latest
steps:
- name: Fail if repo merges are paused
if: ${{ env.FREEZE == 'true' }}
run: |
echo 'Merges into the "main" branch on this repo are currently paused!'
exit 1