Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit fe6ba24

Browse files
committedMar 26, 2021
chore: fixed lint errors in workflows
1 parent 5f4e6a0 commit fe6ba24

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed
 

‎.github/workflows/config-check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
dependencies: ["locked"]
1717

1818
env:
19-
key: "license-update-linux-v2" # change key (version) to clear cache
19+
key: "config-check-linux-v1" # change key (version) to clear cache
2020
extensions: "mbstring"
2121
ini-values: "date.timezone=Europe/Berlin, assert.exception=1, zend.assertions=1, opcache.enable=1, opcache.enable_cli=0, opcache.optimization_level=-1, opcache.jit=1255, opcache.jit_buffer_size=32M, serialize_precision=14"
2222
tools: "composer, cs2pr"

‎.github/workflows/semantic-release.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ on: # yamllint disable-line rule:truthy
1313
- "beta"
1414

1515
jobs:
16-
config-check:
16+
test:
1717
name: "Config Check"
1818

1919
runs-on: "ubuntu-latest"
2020

2121
strategy:
2222
matrix:
23-
php-versions: [ "8.0" ]
24-
dependencies: [ "locked" ]
23+
php-versions: ["8.0"]
24+
dependencies: ["locked"]
2525

2626
env:
27-
key: "license-update-linux-v2" # change key (version) to clear cache
27+
key: "semantic-release-linux-v1" # change key (version) to clear cache
2828
extensions: "mbstring"
2929
ini-values: "date.timezone=Europe/Berlin, assert.exception=1, zend.assertions=1, opcache.enable=1, opcache.enable_cli=0, opcache.optimization_level=-1, opcache.jit=1255, opcache.jit_buffer_size=32M, serialize_precision=14"
3030
tools: "composer, cs2pr"
@@ -109,6 +109,8 @@ jobs:
109109

110110
runs-on: "ubuntu-latest"
111111

112+
needs: ["test"]
113+
112114
steps:
113115
- uses: "actions/checkout@v2"
114116
with:

0 commit comments

Comments
 (0)
This repository has been archived.