Skip to content

Commit 3d61157

Browse files
committed
feat: add GitHub Actions workflow for fixture regeneration
1 parent 024884c commit 3d61157

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/fixtures.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Trigger Fixture Regeneration
2+
3+
permissions:
4+
contents: write
5+
pull-requests: write
6+
7+
on:
8+
pull_request:
9+
types:
10+
- labeled
11+
12+
jobs:
13+
regenerate_fixtures:
14+
if: github.event.label.name == 'regenerate-fixtures'
15+
uses: codecrafters-io/tester-utils/.github/workflows/fixtures.yml@fixture-gen-action
16+
with:
17+
tester_repo: redis-tester
18+
secrets: inherit

0 commit comments

Comments
 (0)