Skip to content
Merged
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
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
### 1. Why is this change necessary?

// Please link to the relevant issues, if they exists, or explain the solved issue here. e.g.
// closes https://github.com/shopware/shopware/issues/{ISSUE_NUMBER}

### 2. What does this change do, exactly?

// Shortly explain how your change solves the issue
// If the issue has more than one obvious solution,
// shortly explain your reasoning for your chosen approach

### 3. Describe each step to reproduce the issue or behaviour.


### 5. Checklist

- [ ] I have created the PR in draft status and only open it when it's ready for review
- [ ] If the change is large: I have thought about splitting it up into smaller PRs
- [ ] I have written tests and if it's a bug fix verified that they fail without my change or that new code is covered by tests
- [ ] I have updated developer-facing release notes if this change affects external developers
- [ ] I have written or adjusted the documentation according to my changes
- [ ] I added the correct package annotation to each `src` file (not strictly necessary for tests)
- [ ] This change has code comments where appropriate, especially for non-obvious lines of code
- [ ] Ensure the pull request title as well as first commit follows conventional commits
- [ ] I have thought about well-defined extension points and marked everything else as `@internal` / `@private`
199 changes: 0 additions & 199 deletions .gitlab-ci.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .gitlab/Dockerfile

This file was deleted.

55 changes: 0 additions & 55 deletions .gitlab/install_test_data.php

This file was deleted.

5 changes: 0 additions & 5 deletions .gitlab/post_install_migration_assistant.sh

This file was deleted.

2 changes: 1 addition & 1 deletion tests/acceptance/tests/MigrationByUiFlow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ test('As a shop owner I want to migrate my data from my old SW5 shop to SW6 via
await page.getByRole('button', { name: 'Continue' }).click();
await page.getByPlaceholder('Enter name').fill('sw5local');
await page.locator('div').filter({ hasText: /^Shopware 5\.5 - shopware AG$/ }).click();
await page.getByText('Shopware 5.5 - shopware AG').click();
await page.locator(':text("Shopware 5.5 - shopware AG"):visible').click();
await page.getByText('Select gateway').click();
await page.getByPlaceholder('Select gateway').fill('Local');
await page.getByText('Local database').click();
Expand Down