Skip to content

Commit 30c9cba

Browse files
committed
feat: add 6.4 pipeline
1 parent 331306a commit 30c9cba

6 files changed

Lines changed: 81 additions & 0 deletions

File tree

.github/workflows/admin.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Administration
2+
on:
3+
push:
4+
branches:
5+
- 6.4.x
6+
pull_request:
7+
8+
jobs:
9+
unit:
10+
name: Jest
11+
uses: shopware/github-actions/.github/workflows/admin-jest.yml@main
12+
with:
13+
extensionName: ${{ github.event.repository.name }}
14+
shopwareVersion: 6.4.x
15+
lint:
16+
name: ESLint
17+
uses: shopware/github-actions/.github/workflows/admin-eslint.yml@main
18+
with:
19+
extensionName: ${{ github.event.repository.name }}

.github/workflows/build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Build
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- 6.4.x
7+
jobs:
8+
build:
9+
uses: shopware/github-actions/.github/workflows/build-zip.yml@main
10+
with:
11+
extensionName: ${{ github.event.repository.name }}

.github/workflows/php.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: PHP
2+
on:
3+
pull_request:
4+
paths:
5+
- '**/*.php'
6+
- .github/workflows/php.yml
7+
push:
8+
paths:
9+
- '**/*.php'
10+
branches:
11+
- 6.4.x
12+
workflow_dispatch:
13+
schedule:
14+
- cron: '0 3 * * *'
15+
jobs:
16+
cs:
17+
if: github.event_name != 'schedule'
18+
uses: shopware/github-actions/.github/workflows/cs-fixer.yml@main
19+
phpstan:
20+
uses: shopware/github-actions/.github/workflows/phpstan.yml@main
21+
with:
22+
extensionName: ${{ github.event.repository.name }}
23+
shopwareVersion: 6.4.x
24+
phpunit:
25+
uses: shopware/github-actions/.github/workflows/phpunit.yml@main
26+
with:
27+
extensionName: ${{ github.event.repository.name }}
28+
shopwareVersion: 6.4.x
29+
uploadCoverage: true
30+
secrets:
31+
codecovToken: ${{ secrets.CODECOV_TOKEN }}
32+
33+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Release to Store
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
uses: shopware/github-actions/.github/workflows/store-release.yml@main
7+
with:
8+
extensionName: ${{ github.event.repository.name }}
9+
secrets:
10+
accountUser: ${{ secrets.SHOPWARE_ACCOUNT_USER }}
11+
accountPassword: ${{ secrets.SHOPWARE_ACCOUNT_PASSWORD }}
12+
ghToken: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG_de-DE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@
3838

3939
# 1.7.0
4040
- Anzeige des Changelog auf der Detailseite verbessert
41+
42+
# 1.7.1
43+
- Fehler beim Darstellen der Seitennummerierung der Erweiterungsliste

CHANGELOG_en-GB.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@
3838

3939
# 1.7.0
4040
- Improved the display of the changelog on the details page
41+
42+
# 1.7.1
43+
- Fixed the pagination of the extension listing page

0 commit comments

Comments
 (0)