Skip to content

Commit df8c5f0

Browse files
committed
Merge branch 'bump/primer-upstream-ref' into bump/primer-upstream
2 parents c390c0a + 8803458 commit df8c5f0

File tree

63 files changed

+2271
-1050
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2271
-1050
lines changed

.changeset/clever-cats-carry.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/view-components": patch
3+
---
4+
5+
Make Retry button focusable in loading_failure_story

.changeset/healthy-days-hide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/view-components": patch
3+
---
4+
5+
Add support for Ruby 4 in test suite.

.changeset/plenty-regions-warn.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@primer/view-components': minor
3+
---
4+
5+
Adds character_limit option to TextArea and TextField components

.changeset/stupid-toes-find.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@primer/view-components': patch
3+
---
4+
5+
Tooltip: Prevents tooltip from appearing when popover (e.g. ActionMenu) is opened

.changeset/tidy-years-protect.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/view-components": patch
3+
---
4+
5+
Fix compatibility issues with Herb, add linter to CI.

.changeset/tough-students-guess.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/view-components": patch
3+
---
4+
5+
Make AvatarStack accessible via keyboard navigation

.github/workflows/demo-production-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
ruby-version: '3.3'
7474
bundler-cache: true
75-
- uses: actions/cache@v4.3.0
75+
- uses: actions/cache@v5.0.1
7676
with:
7777
path: demo/gemfiles/vendor/bundle
7878
key: gems-build-kuby-main-ruby-3.3.x-${{ hashFiles('demo/gemfiles/kuby.gemfile.lock') }}

.github/workflows/lint.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v6
1717
- name: Get specific changed files
1818
id: changed-files
19-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c
19+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891
2020
with:
2121
files: |
2222
docs/**/*.md
@@ -42,7 +42,7 @@ jobs:
4242
- uses: actions/checkout@v6
4343
- name: Get specific changed files
4444
id: changed-files
45-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c
45+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891
4646
with:
4747
files: |
4848
app/**/*.rb
@@ -62,7 +62,7 @@ jobs:
6262
- uses: actions/checkout@v6
6363
- name: Get changed files
6464
id: changed-files
65-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c
65+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891
6666
with:
6767
files: |
6868
app/components/**/*.erb
@@ -79,7 +79,7 @@ jobs:
7979
- uses: actions/checkout@v6
8080
- name: Get changed files
8181
id: changed-files
82-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c
82+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891
8383
with:
8484
files: |
8585
app/components/**/*.ts
@@ -99,7 +99,7 @@ jobs:
9999
- uses: actions/checkout@v6
100100
- name: Get changed files
101101
id: changed-files
102-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c
102+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891
103103
with:
104104
files: |
105105
app/components/**/*.pcss
@@ -113,3 +113,11 @@ jobs:
113113
run: |
114114
npm ci
115115
npx stylelint --rd -q ${{ steps.changed-files.outputs.all_changed_files }} --custom-formatter=stylelint-actions-formatters
116+
117+
herb:
118+
runs-on: ubuntu-latest
119+
steps:
120+
- uses: actions/checkout@v6
121+
- name: Lint with Herb
122+
run: |
123+
npx @herb-tools/linter

.github/workflows/static-files.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Generate static files
33
on:
44
workflow_dispatch:
55
push:
6+
branches-ignore:
7+
- 'dependabot/**'
68

79
jobs:
810
static:
@@ -33,7 +35,7 @@ jobs:
3335
bundle exec rake utilities:build
3436
bundle exec rake docs:build
3537
bundle exec rake static:dump
36-
- uses: stefanzweifel/git-auto-commit-action@v6.0.1
38+
- uses: stefanzweifel/git-auto-commit-action@v7.1.0
3739
with:
3840
commit_message: Generating static files
3941
commit_user_name: OpenProject CI

.github/workflows/test-accessibility.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ concurrency:
1515
group: test-accessibility-${{ github.head_ref || github.run_id }}
1616
cancel-in-progress: true
1717

18+
env:
19+
FERRUM_PROCESS_TIMEOUT: 30
20+
1821
jobs:
1922
accessibility:
2023
name: Accessibility

0 commit comments

Comments
 (0)