Skip to content

Commit

Permalink
Merge branch 'main' into kh-lint-link-in-text-block
Browse files Browse the repository at this point in the history
  • Loading branch information
khiga8 authored May 28, 2024
2 parents c859fa0 + 159abef commit 9c1e307
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .changeset/clever-pandas-fix.md

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/check-for-changeset.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Check for changeset

on:
pull_request:
types:
# On by default if you specify no types.
- 'opened'
- 'reopened'
- 'synchronize'
# For `skip-label` only.
- 'labeled'
- 'unlabeled'

jobs:
check-for-changeset:
name: Check for changeset
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Check for changeset'
uses: brettcannon/check-for-changed-files@v1
with:
file-pattern: '.changeset/*.md'
skip-label: 'skip changeset'
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'
19 changes: 19 additions & 0 deletions .github/workflows/release_tracking.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release Event Tracking
# Measure a datadog event every time a release occurs

on:
pull_request:
types:
- closed
- opened
- reopened

release:
types: [published]

jobs:
release-tracking:
name: Release Tracking
uses: primer/.github/.github/workflows/[email protected]
secrets:
datadog_api_key: ${{ secrets.DATADOG_API_KEY }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# eslint-plugin-primer-react

## 5.1.0

### Minor Changes

- [#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`.

## 5.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-primer-react",
"version": "5.0.0",
"version": "5.1.0",
"description": "ESLint rules for Primer React",
"main": "src/index.js",
"scripts": {
Expand Down

0 comments on commit 9c1e307

Please sign in to comment.