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
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ updates:
groups:
gradle:
patterns: ["*"]
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
github-actions:
patterns: ["*"]
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
6 changes: 5 additions & 1 deletion .github/workflows/automatic-api-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,9 @@ jobs:
with:
delete-branch: "true"
title: "Update API to ${{ github.event.client_payload.BUFTAG }}"
commit-message: "chore: update api version"
branch: "api-change/${{ github.event.client_payload.BUFTAG }}"
token: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs
# This is how we ensure that workflows run
draft: "always-true"
token: "${{ secrets.GITHUB_TOKEN }}"
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ on:
- "*"
types:
# NOTE: these are the defaults
- opened
- synchronize
- reopened
- "opened"
- "synchronize"
- "reopened"
# NOTE: we add this to let the conversion from draft trigger the workflows
- ready_for_review
- "ready_for_review"
merge_group:
types:
- "checks_requested"
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: "Lint"
on: # yamllint disable-line rule:truthy
push:
branches:
- "!dependabot/*"
- "main"
pull_request:
branches: ["*"]
merge_group:
types:
- "checks_requested"
jobs:
conventional-commits:
name: "Lint Commit Messages"
runs-on: "depot-ubuntu-24.04-small"
if: "github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.action == 'reopened' || github.event.action == 'edited')"
steps:
- uses: "actions/checkout@v6"
- uses: "webiny/[email protected]"
9 changes: 6 additions & 3 deletions .github/workflows/manual-api-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
if: steps.buf-update.outputs.updated == 'true'
with:
delete-branch: "true"
title: Update API to ${{ inputs.buftag }}
branch: api-change/${{ inputs.buftag }}
token: ${{ secrets.GITHUB_TOKEN }}
title: "Update API to ${{ inputs.buftag }}"
commit-message: "chore: update api version"
# https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs
draft: "always-true"
branch: "api-change/${{ inputs.buftag }}"
token: "${{ secrets.GITHUB_TOKEN }}"