daleui 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ version: 2
2
+ enable-beta-ecosystems: true
3
+ updates:
4
+ - package-ecosystem: "bun"
5
+ pull-request-branch-name:
6
+ separator: "-"
7
+ directory: "/"
8
+ schedule:
9
+ interval: "weekly"
10
+ groups:
11
+ storybook:
12
+ patterns:
13
+ - "storybook"
14
+ - "@storybook/*"
15
+
16
+ - package-ecosystem: "github-actions"
17
+ pull-request-branch-name:
18
+ separator: "-"
19
+ directory: "/.github/workflows"
20
+ schedule:
21
+ interval: "weekly"
@@ -3,11 +3,23 @@ name: "Chromatic 🎨"
3
3
  on: push
4
4
 
5
5
  jobs:
6
+ pre-chromatic:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - id: gen_url
10
+ run: |
11
+ # Dependabot can create branches with names that include `/` or `.`, which are not allowed in a URL.
12
+ URL=https://$(sed 's/[\.\/]/\-/g' <<< '${{ github.ref_name }}')--675790d317ba346348aa3490.chromatic.com
13
+ echo "url=$URL" >> $GITHUB_OUTPUT
14
+ outputs:
15
+ url: ${{ steps.gen_url.outputs.url }}
16
+
6
17
  chromatic:
7
18
  environment:
8
19
  name: chromatic
9
- url: https://${{ github.ref_name }}--675790d317ba346348aa3490.chromatic.com
20
+ url: ${{ needs.pre-chromatic.outputs.url }}
10
21
  runs-on: ubuntu-latest
22
+ needs: pre-chromatic
11
23
  steps:
12
24
  - uses: actions/checkout@v4
13
25
  with: