Bump tester utils version to 0.4.13 #47
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: Setup and regenerate fixtures | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| jobs: | |
| setup-and-regenerate-fixtures: | |
| if: github.event.label.name == 'regenerate-fixtures' | |
| runs-on: ubuntu-latest | |
| steps: | |
| # No setup step needed, yet. | |
| - name: Regenerate Fixtures | |
| uses: codecrafters-io/tester-utils/.github/actions/fixtures@master | |
| with: | |
| tester_repo: git-tester | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| fixture_generation_token: ${{ secrets.TESTER_FIXTURE_GENERATION_GITHUB_TOKEN }} |