refactor(abstractions): rename ILambdaHostContext to ILambdaInvocationContext #366
Workflow file for this run
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: Validate PR Title | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| branches: | |
| - main | |
| permissions: | |
| pull-requests: read | |
| concurrency: | |
| group: pr-title-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate-pr-title: | |
| runs-on: ubuntu-latest | |
| name: Validate PR title format | |
| # Skip validation for Dependabot PRs - they have their own naming convention | |
| if: github.actor != 'dependabot[bot]' | |
| steps: | |
| - name: Validate PR title follows conventional commits | |
| uses: amannn/action-semantic-pull-request@v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| refactor | |
| test | |
| chore | |
| ci | |
| scopes: | | |
| host | |
| envelopes | |
| abstractions | |
| opentelemetry | |
| source-generators | |
| deps | |
| build | |
| ci | |
| github | |
| core | |
| docs | |
| testing | |
| requireScope: false | |
| subjectPattern: ^[a-z].* | |
| subjectPatternError: Subject must start with lowercase letter |