Skip to content

Commit

Permalink
Merge branch 'main' into add-aria-expanded-state-take-two
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerJDev committed May 20, 2024
2 parents afab486 + ac25029 commit 4b4e4ff
Show file tree
Hide file tree
Showing 555 changed files with 925 additions and 821 deletions.
5 changes: 5 additions & 0 deletions .changeset/calm-insects-boil.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/react": patch
---

Update NavList to use the new ActionList.GroupHeading API and Add an "as" prop to specify the heading level as default h3. (No changes expected in the rendered HTML)
5 changes: 0 additions & 5 deletions .changeset/cold-starfishes-shout.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-coats-worry.md

This file was deleted.

5 changes: 5 additions & 0 deletions .changeset/long-doors-bow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/react': patch
---

Update the Stack component so that the `justify` prop correctly updates the layout of items
5 changes: 5 additions & 0 deletions .changeset/rich-pans-press.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/react": patch
---

TreeView: Always align expand/collapse chevron icon, leading visual, and trailing visual to top of item
5 changes: 5 additions & 0 deletions .changeset/short-geese-itch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/react': patch
---

Update @github/tab-container-element to latest
5 changes: 0 additions & 5 deletions .changeset/tall-forks-bathe.md

This file was deleted.

5 changes: 5 additions & 0 deletions .changeset/tame-nails-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/react": minor
---

TreeView: Add support for `TreeView.LeadingAction`
5 changes: 0 additions & 5 deletions .changeset/thin-ligers-turn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-students-bow.md

This file was deleted.

18 changes: 9 additions & 9 deletions .github/workflows/assign_release_conductor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,6 @@ jobs:
return user.login === PREV_RELEASE_CONDUCTOR;
});
if (hasPreviousReviewer) {
await github.rest.pulls.removeRequestedReviewers({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: PR_NUMBER,
reviewers: [PREV_RELEASE_CONDUCTOR],
});
}
// Add the current release conductor as an assignee if they are not currently assigned
const hasAssignee = pull.assignees.find((assignee) => {
return assignee.login === RELEASE_CONDUCTOR;
Expand All @@ -101,3 +92,12 @@ jobs:
reviewers: [RELEASE_CONDUCTOR]
})
}
if (hasPreviousReviewer) {
await github.rest.pulls.removeRequestedReviewers({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: PR_NUMBER,
reviewers: [PREV_RELEASE_CONDUCTOR],
});
}
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/release_tracking.yml@create_release_tracking_workflow
secrets:
datadog_api_key: ${{ secrets.DATADOG_API_KEY }}
Loading

0 comments on commit 4b4e4ff

Please sign in to comment.