fix: simplify height calculation for Dropdown
, Flyout
and Select
#1347
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: Changeset Check | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "packages/**" | |
jobs: | |
changeset-check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check for changeset file | |
run: | | |
if git diff --name-only --diff-filter=A origin/main HEAD '.changeset/*.md' | grep '.*'; then | |
echo "Changeset file found!" | |
exit 0 | |
else | |
echo "No changeset file found." | |
exit 1 | |
fi |