Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/report-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ jobs:
git config user.email "muster@users.noreply.github.com"
branch="muster/promote-issue-$ISSUE"
git checkout -b "$branch"
git add "${{ inputs.fixtures-out }}"
# -f: some data repos gitignore their fixtures dir (tracked files stay tracked,
# but the freshly promoted fixture is new and would be refused otherwise)
git add -f "${{ inputs.fixtures-out }}"
git commit -m "test: promote issue #$ISSUE roster to golden fixture"
git push origin "$branch"
gh pr create -R "$GITHUB_REPOSITORY" --head "$branch" \
Expand Down
Loading