Skip to content

Commit

Permalink
Merge branch 'main' into feature/fix-submodule-access
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaegers authored Dec 4, 2024
2 parents 448c0ee + c17da11 commit 215aaab
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/pr-conventional-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: Pull Request Conventional Title

on:
pull_request:
types:
- opened
- edited
- synchronize

permissions: {}

jobs:
validate-pr-title:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
id: pr-title
with:
subjectPattern: ^(?![A-Z]).+$
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
if: always() && steps.pr-title.outputs.error_message != null
with:
header: pr-title-lint-error
message: |
Hey there and thank you for opening this 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.
:warning: Details
${{ steps.pr-title.outputs.error_message }}
- if: steps.pr-title.outputs.error_message == null
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
with:
header: pr-title-lint-error
delete: true
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.1.0"
}

0 comments on commit 215aaab

Please sign in to comment.