This repository was archived by the owner on Jul 28, 2026. It is now read-only.
build(deps): bump rez0n/actions-github-release from 794c12f5e8d629e6ca329cf2e2daeb0f0ce6a3ce to 05fabbd6b2b3ce3383299555ea518faea69b736d #37
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: Display info box when PR contains unsigned commits | |
| on: | |
| pull_request: | |
| # zizmor: ignore[dangerous-triggers] The underlying action does not interact in any way with the source code of the fork. It requires the scope of the original repository in order to post a comment to the pull request itself. | |
| pull_request_target: | |
| jobs: | |
| signed-commits: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| if: > | |
| (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || | |
| (github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: grafana/shared-workflows/actions/signed-commits-info@f7e20b4de846c5951fba99c43c0340e8d2147468 # signed-commits-info/v0.1.0 | |
| continue-on-error: true |