[EuiPageHeader] Fix single right side items from overflowing past its max width #12088
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: "Changelog required" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
branches: [ main ] | |
jobs: | |
# Enforces the update of a changelog file on every pull request | |
changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dangoslen/changelog-enforcer@v2 | |
with: | |
# This should eventually by replaced with a monorepo-compatible changelog checker | |
changeLogPath: "packages/eui/changelogs/upcoming/${{ github.event.pull_request.number }}.md" | |
skipLabels: 'skip-changelog' | |
missingUpdateErrorMessage: 'You need to add a changelog to this PR before it can be merged. @see https://github.com/elastic/eui/blob/main/wiki/contributing-to-eui/documenting/changelogs.md' |