Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[automated] Merge branch 'release/8.0.1xx' => 'release/8.0.3xx' #47569

Open
wants to merge 7 commits into
base: release/8.0.3xx
Choose a base branch
from
6 changes: 3 additions & 3 deletions .github/workflows/pr-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: PR Analysis
on:
pull_request:
types: [opened, synchronize, labeled, unlabeled]
types: [opened, labeled, unlabeled]
permissions:
contents: read
pull-requests: read
jobs:
allowed-labels:
runs-on: ubuntu-latest
steps:
- name: Return error if branch is in lockdown or 'do not merge' label is present
- name: Return error if blocking labels are present in PR
run: echo "Labels on this PR prevent it from being merged. Please contact the repo owners for more information." && exit 1
if: ${{ contains(github.event.pull_request.labels.*.name, 'Branch Lockdown') || contains(github.event.pull_request.labels.*.name, 'DO NOT MERGE') }}
if: ${{ contains(github.event.pull_request.labels.*.name, 'Branch Lockdown') || contains(github.event.pull_request.labels.*.name, 'DO NOT MERGE') || contains(github.event.pull_request.labels.*.name, 'Servicing-consider') || contains(github.event.pull_request.labels.*.name, 'Servicing-more-info') || contains(github.event.pull_request.labels.*.name, 'Servicing-rejected') }}
Loading