build/fix: consolidate CI resources to optimize wall time, fix LAN pairing dropping early #258
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: Verify Commits | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: auths-dev/verify@v1 | |
| with: | |
| fail-on-unsigned: true | |
| post-pr-comment: 'true' | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |