Support RFC-9440 colon-wrapped Base64 for forwarded client certs #7862
Workflow file for this run
This file contains hidden or 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
# This workflow fails if a 'do-not-merge' label is applied to the PR. | |
name: Check do-not-merge | |
on: | |
pull_request: | |
types: [reopened, labeled, unlabeled] | |
# Runs on PRs to main and release branches | |
branches: | |
- main | |
- release/** | |
- ce/** | |
jobs: | |
# checks that a do-not-merge label is not present for a PR | |
do-not-merge-check: | |
# If there is a `do-not-merge` label we ignore this check | |
if: ${{ contains(github.event.pull_request.labels.*.name, 'do-not-merge') }} | |
runs-on: ${{ github.repository == 'hashicorp/vault' && 'ubuntu-latest' || fromJSON('["self-hosted","ubuntu-latest-x64"]') }} | |
steps: | |
- name: Fail if do-not-merge label is applied | |
run: | | |
echo "Cannot merge with do-not-merge label applied." | |
exit 1 |