Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/aider-issue-to-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:

console.log(`Created PR #${newPR.data.number}: ${newPR.data.html_url}`);
- name: Upload aider chat history
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: aider-chat-output
path: ".aider.chat.history.md"
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,23 +119,23 @@ jobs:

- name: Upload Playwright Report
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: playwright-report-${{ matrix.test }}
path: dist/.playwright/apps/golden-sample-app-e2e/reports/html/
retention-days: ${{ env.RETENTION_DAYS }}

- name: Upload Allure Report
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: allure-report-${{ matrix.test }}
path: allure-report/
retention-days: ${{ env.RETENTION_DAYS }}

- name: Upload Accessibility Reports
if: ${{ matrix.test == 'a11y' && !cancelled() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: accessibility-report
path: reports/accessibility-reports/
Expand Down
Loading