Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DO NOT MERGE] Test workflow to check for @wordpress/components CHANGELOG updates #49816

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/check-components-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
fetch-depth: ${{ env.PR_COMMIT_COUNT }}
- name: 'Fetch relevant history from origin'
run: git fetch origin ${{ github.event.pull_request.base.ref }}
Expand Down
1 change: 1 addition & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Internal

- `Mobile` Refactor of the KeyboardAwareFlatList component.
- `Test` Test

### Enhancements

Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/alignment-matrix-control/icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import type { WordPressComponentProps } from '../ui/context';

const BASE_SIZE = 24;

function AlignmentMatrixControlIcon( {
function AlignmentMatrixControlIconTest( {
className,
disablePointerEvents = true,
size = BASE_SIZE,
Expand Down Expand Up @@ -59,4 +59,4 @@ function AlignmentMatrixControlIcon( {
);
}

export default AlignmentMatrixControlIcon;
export default AlignmentMatrixControlIconTest;
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function useBaseId( id?: string ) {

/**
*
* AlignmentMatrixControl components enable adjustments to horizontal and vertical alignments for UI.
* AlignmentMatrixControl components enable adjustments to horizontal and vertical alignments for UI. This is test.
*
* ```jsx
* import { __experimentalAlignmentMatrixControl as AlignmentMatrixControl } from '@wordpress/components';
Expand Down