hr-design-system-handlebars 1.134.0 → 1.135.0

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.
@@ -1,39 +1,36 @@
1
1
  ## name of our action
2
2
  name: Release
3
3
 
4
- # the event that will trigger the action
5
4
  on:
6
- push:
7
- branches: [main]
5
+ push:
6
+ branches: [main]
7
+
8
8
  permissions:
9
- id-token: write # Required for OIDC
10
- contents: read
9
+ id-token: write
10
+ contents: write
11
11
 
12
- # what the action will do
13
12
  jobs:
14
- release:
15
- # the operating system it will run on
16
- runs-on: ubuntu-latest
17
- # this check needs to be in place to prevent a publish loop with auto and github actions
18
- if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
19
- # the list of steps that the action will go through
20
- steps:
21
- - uses: actions/checkout@v6
22
- - name: Prepare repository
23
- run: git fetch --unshallow --tags
24
- # - name: Unset header
25
- # checkout@v2 adds a header that makes branch protection report errors ):
26
- # run: git config --local --unset http.https://github.com/.extraheader
27
- - name: Use Node.js 24.x
28
- uses: actions/setup-node@v6
29
- with:
30
- node-version: 24.x
31
- registry-url: https://registry.npmjs.org
32
- package-manager-cache: false
33
- - uses: bahmutov/npm-install@v1.12.0
34
- - name: Create Release
35
- env:
36
- GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
37
- run: |
38
- npm run build
39
- npm run release
13
+ release:
14
+ runs-on: ubuntu-latest
15
+ if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
16
+ steps:
17
+ - uses: actions/checkout@v6
18
+ with:
19
+ token: ${{ secrets.GH_TOKEN }}
20
+ fetch-depth: 0
21
+
22
+ - name: Use Node.js 24.x
23
+ uses: actions/setup-node@v6
24
+ with:
25
+ node-version: 24.x
26
+ registry-url: https://registry.npmjs.org
27
+ package-manager-cache: false
28
+
29
+ - uses: bahmutov/npm-install@v1.12.0
30
+
31
+ - name: Create Release
32
+ env:
33
+ GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
34
+ run: |
35
+ npm run build
36
+ npm run release
package/CHANGELOG.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  #### 🚀 Enhancement
4
4
 
5
+ - :wrench: Sets write permission to contents to make sure that auto can… [#1367](https://github.com/mumprod/hr-design-system-handlebars/pull/1367) ([@szuelch](https://github.com/szuelch))
5
6
  - :wrench: remove version-file from auto plugin config [#1366](https://github.com/mumprod/hr-design-system-handlebars/pull/1366) ([@szuelch](https://github.com/szuelch))
6
7
  - :wrench: Change repository-url in package.json and configure auto plu… [#1365](https://github.com/mumprod/hr-design-system-handlebars/pull/1365) ([@szuelch](https://github.com/szuelch))
7
8
  - :wrench: Add missing oidc permissions [#1364](https://github.com/mumprod/hr-design-system-handlebars/pull/1364) ([@szuelch](https://github.com/szuelch))
@@ -3925,7 +3925,7 @@ article #commentList {
3925
3925
  border-bottom-color: var(--color-secondary-ds);
3926
3926
  }
3927
3927
  .counter-reset {
3928
- counter-reset: cnt1783945081655;
3928
+ counter-reset: cnt1783946149591;
3929
3929
  }
3930
3930
  .animate-delay-100 {
3931
3931
  --tw-animate-delay: 100ms;
@@ -4386,7 +4386,7 @@ html { scroll-behavior: smooth; }
4386
4386
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4387
4387
  }
4388
4388
  .-ordered {
4389
- counter-increment: cnt1783945081655 1;
4389
+ counter-increment: cnt1783946149591 1;
4390
4390
  }
4391
4391
  .-ordered::before {
4392
4392
  position: absolute;
@@ -4404,7 +4404,7 @@ html { scroll-behavior: smooth; }
4404
4404
  --tw-text-opacity: 1;
4405
4405
  color: rgba(0, 0, 0, 1);
4406
4406
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4407
- content: counter(cnt1783945081655);
4407
+ content: counter(cnt1783946149591);
4408
4408
  }
4409
4409
  /*! ****************************/
4410
4410
  /*! DataPolicy stuff */
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "repository": "https://github.com/mumprod/hr-design-system-handlebars",
9
- "version": "1.134.0",
9
+ "version": "1.135.0",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",