pre_commit.yaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. name: pre-commit
  5. on:
  6. pull_request:
  7. merge_group:
  8. push:
  9. branches: [trunk]
  10. permissions:
  11. contents: read # For actions/checkout.
  12. jobs:
  13. pre-commit:
  14. runs-on: ubuntu-latest
  15. steps:
  16. - name: Harden Runner
  17. uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
  18. with:
  19. egress-policy: audit
  20. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
  21. - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
  22. - uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
  23. # We want to automatically create github suggestions for pre-commit file
  24. # changes for a pull request. But `pull_request` actions never have write
  25. # permissions to the repository, so we create the suggestions in a separate
  26. # privileged `workflow_run` action in pre_commit_suggestions.yaml. Here,
  27. # we upload the diffs and event configuration to an artifact for use by
  28. # that action.
  29. - name: Collect pre-commit output
  30. if: failure()
  31. run: |
  32. mkdir -p pre-commit-output
  33. git diff > pre-commit-output/diff
  34. cp $GITHUB_EVENT_PATH pre-commit-output/event
  35. - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
  36. if: failure()
  37. with:
  38. name: pre-commit output
  39. path: pre-commit-output/*