Skip to content

chore(deps): update actions/upload-artifact action to v4.4.3 #160

chore(deps): update actions/upload-artifact action to v4.4.3

chore(deps): update actions/upload-artifact action to v4.4.3 #160

Workflow file for this run

---
name: Lint PR
on:
workflow_call: {}
pull_request_target:
types:
- opened
- edited
- synchronize
permissions: {}
jobs:
pr-title-lint:
runs-on: ubuntu-latest
permissions:
pull-requests: write
statuses: write
steps:
- id: lint_pr_title
uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
with:
# Ensure the subject doesn't start with an uppercase character.
subjectPattern: ^(?![A-Z]).+$
subjectPatternError: |
Please ensure the subject in the pull request title ("{subject}")
doesn't start with an uppercase character.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
# When the previous steps fail, the workflow would stop. By adding this
# condition you can continue the execution with the populated error message.
if: always() && (steps.lint_pr_title.outputs.error_message != null)
with:
header: pr-title-lint-error
# yamllint disable rule:line-length
message: |
Hey there and thank you for opening this pull request! :wave:
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.
While the specification does not require a specific casing, it recommends being consistent.
We use the pull request title in automated release changelog updates, and would like our
changelogs to look nice.
Details:
```
${{ steps.lint_pr_title.outputs.error_message }}
```
# yamllint enable rule:line-length
# Delete a previous comment when the issue has been resolved
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
with:
header: pr-title-lint-error
delete: true