Skip to content

Commit a205b95

Browse files
authored
fix: update v9 icon branch name (#6089)
## 📄 Description This PR fixes the workflow that fetches the icons for the `release/v9` branch. The branch name is also used as a name for the changeset file therefore it cannot contain a `/` character. --- ## 📝 Checklist - ✅ My code follows the style guidelines of this project - 🛠️ I have performed a self-review of my own code - 📄 I have made corresponding changes to the documentation - ⚠️ My changes generate no new warnings or errors - 🧪 I have added tests that prove my fix is effective or that my feature works - ✔️ New and existing unit tests pass locally with my changes
1 parent d6fb59d commit a205b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/fetch-icons-v9.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
git checkout -b $BRANCH_NAME origin/release/v9
5454
echo "branch=$BRANCH_NAME" >> $GITHUB_OUTPUT
5555
env:
56-
BRANCH_NAME: v9/${{ steps.current-date.outputs.date }}-update-icons
56+
BRANCH_NAME: ${{ steps.current-date.outputs.date }}-update-icons-v9
5757

5858
- name: Install icons & dependencies
5959
run: pnpm --filter design-system-icons... --filter design-system-styles... install

0 commit comments

Comments
 (0)