chore: bump @patternfly/patternfly from 4.224.5 to 5.4.0 #7927
Workflow file for this run
This file contains 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
# This workflow will validate the title of a PR to ensure it meets conventional commit standards | |
name: Validate conventional commit syntax | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
pull_request_review: | |
types: | |
- submitted | |
permissions: | |
pull-requests: read | |
# Separate jobs can run concurrently | |
jobs: | |
prTitle: | |
name: Validate conventional commit format for title | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- run: npm ci --prefer-offline | |
- run: npm i @commitlint/load | |
- id: prlint | |
uses: kevintyj/prlint@v2 | |
- id: comment | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: commitlint | |
message: | | |
## ${{ steps.prlint.outputs.lint-status }} | |
<details><summary>More Info</summary> | |
```json | |
${{ toJSON(fromJSON(steps.prlint.outputs.lint-details)) }} | |
``` | |
</details> | |
- uses: actions/github-script@v7 | |
env: | |
PR_TITLE_VALID: ${{ fromJSON(steps.prlint.outputs.lint-details).valid }} | |
PR_LINT_STATUS: ${{ steps.prlint.outputs.lint-status }} | |
with: | |
script: | | |
const { PR_LINT_STATUS, PR_TITLE_VALID } = process.env; | |
if (PR_TITLE_VALID.toString() !== 'true') | |
core.setFailed(PR_LINT_STATUS); | |