feat: credit the triggering chatter on the timewarp overlay #1047
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: pre-commit | |
| on: | |
| pull_request: | |
| push: | |
| branches: [develop, master] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| # The gofmt hook (and the golang-based gitleaks/actionlint hooks) need | |
| # the Go toolchain on PATH; mise installs it from .tool-versions. | |
| - uses: jdx/mise-action@v4 | |
| - uses: pre-commit/action@v3.0.1 | |
| env: | |
| SKIP: no-commit-to-branch |