Skip to content

Commit 0fef81d

Browse files
authored
Merge branch 'main' into kh-lint-link-in-text-block
2 parents 2eb9bd3 + 159abef commit 0fef81d

File tree

5 files changed

+51
-6
lines changed

5 files changed

+51
-6
lines changed

.changeset/clever-pandas-fix.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Check for changeset
2+
3+
on:
4+
pull_request:
5+
types:
6+
# On by default if you specify no types.
7+
- 'opened'
8+
- 'reopened'
9+
- 'synchronize'
10+
# For `skip-label` only.
11+
- 'labeled'
12+
- 'unlabeled'
13+
14+
jobs:
15+
check-for-changeset:
16+
name: Check for changeset
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: 'Check for changeset'
21+
uses: brettcannon/check-for-changed-files@v1
22+
with:
23+
file-pattern: '.changeset/*.md'
24+
skip-label: 'skip changeset'
25+
failure-message: 'No changeset found. If these changes should not result in a new version, apply the ${skip-label} label to this pull request. If these changes should result in a version bump, please add a changeset https://git.io/J6QvQ'
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release Event Tracking
2+
# Measure a datadog event every time a release occurs
3+
4+
on:
5+
pull_request:
6+
types:
7+
- closed
8+
- opened
9+
- reopened
10+
11+
release:
12+
types: [published]
13+
14+
jobs:
15+
release-tracking:
16+
name: Release Tracking
17+
uses: primer/.github/.github/workflows/[email protected]
18+
secrets:
19+
datadog_api_key: ${{ secrets.DATADOG_API_KEY }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# eslint-plugin-primer-react
22

3+
## 5.1.0
4+
5+
### Minor Changes
6+
7+
- [#178](https://github.com/primer/eslint-plugin-primer-react/pull/178) [`49150da`](https://github.com/primer/eslint-plugin-primer-react/commit/49150da106f0ff9a52faac8d559b78449c672391) Thanks [@khiga8](https://github.com/khiga8)! - Map `Box` to `div` and pass it into `eslint-plugin-github`.
8+
39
## 5.0.0
410

511
### Major Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-primer-react",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "ESLint rules for Primer React",
55
"main": "src/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)