Skip to content

Commit a64453d

Browse files
authored
Release v4.0.6
Minor improvements
2 parents 1b33f8a + c46694a commit a64453d

3 files changed

Lines changed: 25 additions & 5 deletions

File tree

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: Debugbar CI Pipeline
1+
name: CI Pipeline
22

33
on: [ push, workflow_dispatch ]
44

55
jobs:
6-
php-lint:
6+
php-tests:
77
strategy:
88
matrix:
99
php: [ '8.3', '8.4' ]
10-
uses: tastyigniter/workflows/.github/workflows/php-lint.yml@main
10+
uses: tastyigniter/workflows/.github/workflows/php-tests.yml@main
1111
with:
1212
php-version: ${{ matrix.php }}

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
"test:coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
7070
"test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
7171
"test": [
72-
"@test:lint",
7372
"@test:refactor",
74-
"@test:static"
73+
"@test:static",
74+
"@test:lint"
7575
]
7676
}
7777
}

0 commit comments

Comments
 (0)