mirror of
https://github.com/Homebrew/brew.git
synced 2026-08-12 22:29:27 +04:00
- Drop the status write that fork pull requests cannot receive. - Pin the `2026.08.03.2` action release that fails validation jobs. - Report the required check for synthetic merge queue commits.
22 lines
471 B
YAML
22 lines
471 B
YAML
name: Commit Style
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ["**"]
|
|
merge_group:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
check-commit-format:
|
|
runs-on: ubuntu-slim
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
steps:
|
|
- name: Check commit format
|
|
if: github.event_name == 'pull_request'
|
|
uses: Homebrew/actions/check-commit-format@fd832223f9f99ebf0244dd20658680e5d4aca049 # 2026.08.03.2
|
|
with:
|
|
check_package_commit_format: false
|