fix: Replace deprecated React.FormEvent and React.FormEventHandler with derived types #16413
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint PR | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| name: Validate PR title | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - id: lint_pr_title | |
| uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| wip: false | |
| - uses: marocchino/sticky-pull-request-comment@v2 | |
| # Continue execution if action-semantic-pull-request fails with an error | |
| if: always() && (steps.lint_pr_title.outputs.error_message != null) | |
| with: | |
| header: Invalid Pull Request Title | |
| message: | | |
| Thank you for your Pull Request! | |
| We require pull request titles to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted. | |
| Details: | |
| ``` | |
| ${{ steps.lint_pr_title.outputs.error_message }} | |
| ``` | |
| # If the PR linting issue has been resolved, delete the corresponding comment if one exists | |
| - if: ${{ steps.lint_pr_title.outputs.error_message == null }} | |
| uses: marocchino/sticky-pull-request-comment@v2 | |
| with: | |
| header: Invalid Pull Request Title | |
| delete: true |