feat: Auto merge dependabot pr #1
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
name: 'Ageras Pull Request Policy' | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
permissions: | |
pull-requests: write | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
id: lint_pr_title | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: marocchino/sticky-pull-request-comment@v2 | |
if: always() && (steps.lint_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 to follow the [PR Title Conventions](https://www.notion.so/ageras/PR-Title-Convention-39301ea990214bb5a383b481420b42f2?pvs=4) and it looks like your proposed title needs to be adjusted. | |
Examples: | |
- [feat|fix|chore|security|docs]?([TLW-[0-9+]|scope]): [subject] | |
- feat(TLW-1234,email): Email verification endpoints and service | |
- docs(parser,verification): Api documentation updates for several endpoints | |
- [WIP] feat: Email verification endpoints and service | |
Details: | |
``` | |
${{ steps.lint_pr_title.outputs.error_message }} | |
``` | |
- if: ${{ steps.lint_pr_title.outputs.error_message == null }} | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: pr-title-lint-error | |
delete: true |