mirror of
https://github.com/git-for-windows/git.git
synced 2026-07-05 14:26:21 -05:00
The primary change in this version jump (and the reason for a _major_ version increment) is that this Action is now disabled in GitHub workflows triggered by workflow_run and pull_request_target events, none of which are used in Git's workflows. For more details, see https://github.com/actions/checkout/releases. Originally-authored-by: dependabot[bot] <support@github.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
35 lines
785 B
YAML
35 lines
785 B
YAML
name: check-style
|
|
|
|
# Get the repository with all commits to ensure that we can analyze
|
|
# all of the commits contributed via the Pull Request.
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
# Avoid unnecessary builds. Unlike the main CI jobs, these are not
|
|
# ci-configurable (but could be).
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check-style:
|
|
env:
|
|
CC: clang
|
|
jobname: ClangFormat
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- run: ci/install-dependencies.sh
|
|
|
|
- name: git clang-format
|
|
continue-on-error: true
|
|
id: check_out
|
|
run: |
|
|
./ci/run-style-check.sh \
|
|
"${{github.event.pull_request.base.sha}}"
|