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 @@ -10,10 +10,18 @@ updates:
groups:
bundler:
patterns: ["*"]
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
groups:
github-actions:
patterns: ["*"]
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
4 changes: 4 additions & 0 deletions .github/workflows/automatic-api-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ 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 }}"
# 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"
base: "main"
token: ${{ secrets.GITHUB_TOKEN }}
27 changes: 7 additions & 20 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,12 @@ jobs:
- name: "Run rspec"
run: "bundle exec rspec"

protobuf:
name: "Generate Protobufs"
runs-on: "ubuntu-latest"
conventional-commits:
name: "Lint Commit Messages"
permissions:
contents: "read"
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: "ruby/setup-ruby@v1"
with:
bundler-cache: true
- uses: "arduino/setup-protoc@v3"
with:
version: "24.4"
- name: "Install Homebrew & gRPC"
run: |
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/runner/.bash_profile
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install grpc
which grpc_ruby_plugin
echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH
- uses: "bufbuild/buf-setup-action@v1.50.0"
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: "webiny/action-conventional-commits@v1.3.0"
Comment thread Fixed
4 changes: 4 additions & 0 deletions .github/workflows/manual-api-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
with:
delete-branch: "true"
title: Update API to ${{ inputs.buftag }}
# 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"
commit-message: "chore: update api version"
branch: api-change/${{ inputs.buftag }}
base: "main"
token: ${{ secrets.GITHUB_TOKEN }}