ci: add job to run this against my specs repo to test functionality #1
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: Dry Run | |
| on: push | |
| permissions: {} | |
| jobs: | |
| update: | |
| name: dry-run | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| # Check out the specs to run this on | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| repository: aidandenlinger/autocopr-specs | |
| path: './autocopr-specs' | |
| # Run the action from THIS branch in dry-run mode | |
| - uses: ./action.yml | |
| with: | |
| mode: "dry-run" | |
| root_loc: "autocopr-specs" | |
| verbose: "true" |