Skip to content

[Snyk] Security upgrade linkinator from 2.13.1 to 2.13.2 #12

[Snyk] Security upgrade linkinator from 2.13.1 to 2.13.2

[Snyk] Security upgrade linkinator from 2.13.1 to 2.13.2 #12

name: Repo Freeze Check
on:
workflow_dispatch:
pull_request_target:
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' && github.head_ref != 'repo-sync' }}
run: |
echo 'Merges into the "main" branch on this repo are currently paused!'
exit 1