Skip to content

Commit

Permalink
feat(ci): semanatic PR workflow and limit dependabot (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey authored Jul 16, 2024
1 parent 091674a commit e6c904a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ updates:
schedule:
interval: weekly
open-pull-requests-limit: 10
allow:
- dependency-name: "github.com/rollkit/*"
labels:
- T:dependencies
- package-ecosystem: docker
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/semantic-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Semantic Pull Request

on:
pull_request_target:
types:
- opened
- edited
- synchronize

permissions:
pull-requests: read

jobs:
main:
name: conventional-commit-pr-title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e6c904a

Please sign in to comment.