Update stacklok/toolhive-registry-server to v1.4.3 #1692
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: On PR | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| # Cancel stale runs so only the PR's current HEAD determines the | |
| # check status. Matters specifically for PRs where the | |
| # upstream-release-docs workflow pushes multiple commits | |
| # in quick succession (skill output + prettier/eslint autofix): the | |
| # intermediate commits briefly fail lint until the autofix lands, | |
| # and without cancel-in-progress those intermediate failures stay | |
| # in the check history. | |
| concurrency: | |
| group: on-pr-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| static-checks: | |
| name: Static checks | |
| uses: ./.github/workflows/_static-checks.yaml |