feat(repo): add PR number input to filter-paths helper (#789) #569
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 Merge Safety | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'src/helpers/check-merge-safety.ts' | |
| jobs: | |
| test: | |
| name: Merge Safety | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - uses: ./ | |
| with: | |
| helper: check-merge-safety | |
| override_filter_paths: | | |
| package.json | |
| package-lock.json |