Skip to content

Commit 02bb222

Browse files
authored
Merge branch 'main' into table-tnums
2 parents fd7782e + 7d4cd40 commit 02bb222

Some content is hidden

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

59 files changed

+1554
-2590
lines changed

.changeset/nasty-parrots-crash.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/css": patch
3+
---
4+
5+
Removed .css extension from @import and modified @primer/primitives to be output as Sass code.

.changeset/rotten-numbers-enjoy.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@primer/css': patch
3+
---
4+
5+
Update primer/primitives to allow for version 9 and 10

.github/workflows/axe.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 0
1616
- name: Get changed files
1717
id: changed-files
18-
uses: tj-actions/changed-files@v44
18+
uses: tj-actions/changed-files@v45
1919
with:
2020
files: |
2121
docs/content/components/**/*.md

.github/workflows/welcome.yml

+24
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: Welcome
22
on:
33
pull_request:
4+
types:
5+
# On by default if you specify no types.
6+
- "opened"
7+
- "reopened"
8+
- "synchronize"
9+
# For `skip-label` only.
10+
- "labeled"
11+
- "unlabeled"
412

513
jobs:
614
release-template:
@@ -39,6 +47,22 @@ jobs:
3947
})
4048
}
4149
50+
check-for-changeset:
51+
name: Check for changeset
52+
runs-on: ubuntu-latest
53+
env:
54+
SKIP_LABEL: "skip changeset"
55+
steps:
56+
- if: "contains(github.event.pull_request.labels.*.name, 'skip changeset')"
57+
run: echo "passed"; exit 0;
58+
- if: "!contains(github.event.pull_request.labels.*.name, 'skip changeset')"
59+
uses: actions/checkout@v4
60+
with:
61+
ref: ${{ github.event.pull_request.head.sha }}
62+
- if: "!contains(github.event.pull_request.labels.*.name, 'skip changeset')"
63+
name: "Check for changeset"
64+
run: script/check-for-changeset
65+
4266
bundle-stats:
4367
needs: release-template
4468
runs-on: ubuntu-latest

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @primer/css
22

3+
## 21.5.0
4+
5+
### Minor Changes
6+
7+
- [#2724](https://github.com/primer/css/pull/2724) [`30d144b`](https://github.com/primer/css/commit/30d144b507d75e5b5ef6d4ec156978acaeb9fad4) Thanks [@camertron](https://github.com/camertron)! - Move prod @primer/\* dependencies to dev
8+
9+
## 21.4.0
10+
11+
### Minor Changes
12+
13+
- [#2691](https://github.com/primer/css/pull/2691) [`5097430`](https://github.com/primer/css/commit/50974300dfe8cf636e1b15b5fbd5b0dc5adf4f2e) Thanks [@dylanatsmith](https://github.com/dylanatsmith)! - Remove background behind images in markdown-body
14+
15+
### Patch Changes
16+
17+
- [#2710](https://github.com/primer/css/pull/2710) [`3017831`](https://github.com/primer/css/commit/30178319550ecbf318ecbfa36675c80b6e95e3ba) Thanks [@smockle](https://github.com/smockle)! - Replace deprecated CSS properties in '.sr-only'
18+
319
## 21.3.6
420

521
### Patch Changes

0 commit comments

Comments
 (0)