Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
interval: 'weekly'
commit-message:
prefix: 'deps'
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changes dependabot prs to have title deps(deps):... or deps(deps-dev):... this allows us to record dependency updates in the changelog without needing to record all chore type commits

include: scope
20 changes: 20 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check PR

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

jobs:
pr-title:
runs-on: ubuntu-latest
name: Check PR Title
steps:
- name: Check PR Title
uses: agenthunt/conventional-commit-checker-action@9e552d650d0e205553ec7792d447929fc78e012b # v2.0.0
with:
pr-title-regex: "^(build|chore|ci|deps|docs|feat|fix|perf|refactor|style|test)(\\(.+\\))?(!)?:\\s.*"
pr-body-regex: ".*" # We don't really care what the PR body description contains, just the title
1 change: 0 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
{ "type":"refactor", "section": "🚜 Refactor" },
{ "type":"style", "section": "🎨 Styling" },
{ "type":"test", "section": "🧪 Testing" },
{ "type":"chore", "section": "⚙️ Miscellaneous Tasks" },
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should avoid creating prs based on chore commits like changes made to the readme from a bot.

{ "type":"deps", "section": "📦 Dependency Updates" }
]
}
Expand Down
Loading