Node Proximity Scorer for PD #253
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: Check Signed Commits in PR | |
| on: | |
| pull_request_target: | |
| jobs: | |
| check-signed-commits: | |
| name: Check signed commits in PR | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write # Required to post comments on PRs | |
| steps: | |
| - name: Check signed commits in PR | |
| uses: 1Password/check-signed-commits-action@v1 # Use the action | |
| with: | |
| comment: | | |
| 🚨 Unsigned commits detected! Please sign your commits. | |
| For instructions on how to set up GPG/SSH signing and verify your commits, please see [GitHub Documentation](https://docs.github.com/en/authentication/managing-commit-signature-verification). |