Bump peter-evans/find-comment from 0da1f4fc1f20cd898368bd56089d391df418f52f to a66f4556a6b261f6add2b6e173c46c5a0dcef998 #9320
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Repo Freeze Check | |
# **What it does**: Prevent pull requests from merging during freezes. | |
# **Why we have it**: Sometimes we need to freeze deployments for various reasons. | |
# **Who does it impact**: Anyone working on docs. | |
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 |