mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
d50932c50f
Bumps the github-actions-dependencies group with 1 update: [j178/prek-action](https://github.com/j178/prek-action). Updates `j178/prek-action` from 1 to 2 - [Release notes](https://github.com/j178/prek-action/releases) - [Commits](https://github.com/j178/prek-action/compare/v1...v2) --- updated-dependencies: - dependency-name: j178/prek-action dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
523 B
YAML
23 lines
523 B
YAML
# https://github.com/j178/prek
|
|
name: Manual hooks
|
|
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
pre-commit:
|
|
name: Run pre-commit
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
|
|
uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
- uses: j178/prek-action@v2
|
|
with:
|
|
install-only: true
|
|
- name: Run manual pre-commit hooks
|
|
run: prek run --color=always --all-files --hook-stage manual
|