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

Commit 13a0e80

Browse files
committed
studio id must be an uuid
1 parent 1355a82 commit 13a0e80

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/create_pull_request.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,19 @@ jobs:
2828
- name: Permissions
2929
run: sudo chmod -R 777 ./
3030

31-
- name: Fix code style
32-
uses: docker://oskarstark/php-cs-fixer-ga:latest
31+
- name: Set up PHP
32+
uses: shivammathur/setup-php@v2
3333
with:
34-
args: --allow-risky=yes
34+
php-version: '8.2'
35+
36+
- name: Install dependencies
37+
run: composer install --no-progress --no-suggest --prefer-dist
38+
39+
- name: Run Rector
40+
run: vendor/bin/rector
41+
42+
- name: Fix code style
43+
run: vendor/bin/php-cs-fixer fix
3544

3645
- name: Create Pull Request
3746
id: cpr

catroweb.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,6 +1319,7 @@ paths:
13191319

13201320
'/studio/{id}':
13211321
parameters:
1322+
- $ref: '#/components/parameters/Uuid'
13221323
- $ref: '#/components/parameters/Locale'
13231324
put:
13241325
security:

0 commit comments

Comments
 (0)