Skip to content

chore: rename Go module to github.com/arimxyer/pass-cli #120

chore: rename Go module to github.com/arimxyer/pass-cli

chore: rename Go module to github.com/arimxyer/pass-cli #120

Workflow file for this run

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 }}"