Skip to content

Commit 9a7ba8f

Browse files
committed
Fix diagnostics
1 parent c73c4c8 commit 9a7ba8f

2 files changed

Lines changed: 24 additions & 1 deletion

File tree

.github/dependabot.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
2+
3+
version: 2
4+
5+
updates:
6+
- commit-message:
7+
include: "scope"
8+
prefix: "composer"
9+
directory: "/"
10+
open-pull-requests-limit: 10
11+
package-ecosystem: "composer"
12+
schedule:
13+
interval: "weekly"
14+
versioning-strategy: "widen"
15+
16+
- commit-message:
17+
include: "scope"
18+
prefix: "github-actions"
19+
directory: "/"
20+
open-pull-requests-limit: 10
21+
package-ecosystem: "github-actions"
22+
schedule:
23+
interval: "weekly"

.github/workflows/diagnostics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: PHP ${{ matrix.php }} Upload build directory to artifact
6868
uses: actions/upload-artifact@v4
69-
if: ${{ success() }} || ${{ failure() }}
69+
if: '${{ success() || failure() }}'
7070
with:
7171
name: phpcq-builds-php-${{ matrix.php }}
7272
path: .phpcq/build/

0 commit comments

Comments
 (0)