Skip to content

Commit 7d00d04

Browse files
authored
Release v4.1.3
### Added - Improve category menu query to filter by location. - **Local Header Component:** Add current page support to display opening schedule on reservation page. ### Fixed - Add return type declaration for menus count query closure. - **Booking Component:** Remove duplicate `data-control="booking"` element. - **Local Header Component:** Fix menu scroll issue. (#68) - Ensure current order type is updated during boot process. (#65)
2 parents c065cd9 + 8891e89 commit 7d00d04

88 files changed

Lines changed: 10163 additions & 1105 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Auto Merge Release
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
release-branch:
7+
description: 'Target branch for release'
8+
required: false
9+
default: 'master'
10+
type: string
11+
pull_request:
12+
types: [opened, synchronize, reopened, ready_for_review]
13+
14+
jobs:
15+
release:
16+
uses: tastyigniter/workflows/.github/workflows/auto-merge-release.yml@main
17+
with:
18+
release-branch: ${{ inputs.release-branch || 'master' }}
19+
secrets:
20+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}

.github/workflows/pipeline.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Orange CI Pipeline
1+
name: CI Pipeline
22

33
on: [ push, workflow_dispatch ]
44

@@ -18,11 +18,3 @@ jobs:
1818
uses: tastyigniter/workflows/.github/workflows/php-tests.yml@main
1919
with:
2020
php-version: ${{ matrix.php }}
21-
22-
auto-merge-release:
23-
needs: [ php-tests ]
24-
uses: tastyigniter/workflows/.github/workflows/auto-merge-release.yml@main
25-
with:
26-
release-branch: master
27-
secrets:
28-
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@
9898
"test:coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
9999
"test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
100100
"test": [
101-
"@test:lint",
102101
"@test:refactor",
103102
"@test:static",
103+
"@test:lint",
104104
"@test:coverage"
105105
]
106106
}
107-
}
107+
}

0 commit comments

Comments
 (0)