chore: rename Go module to github.com/arimxyer/pass-cli #120
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: PR Validation | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout PR | |
| uses: actions/checkout@v6 | |
| - name: PR validation | |
| run: | | |
| echo "✅ PR validated for merge to main" | |
| echo "PR #${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}" | |
| echo "Files changed: ${{ github.event.pull_request.changed_files }}" | |
| echo "Additions: +${{ github.event.pull_request.additions }}" | |
| echo "Deletions: -${{ github.event.pull_request.deletions }}" |