mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-13 00:36:16 +01:00
[BUGFIX] Fix the trigger syntax in the CI builds (#395)
The CI workflow with predefined GitHub actions had an empty `on:` element, which is invalid. Use the correct event for manually triggered workflow runs instead.
This commit is contained in:
parent
4854d9983a
commit
d39727d718
1 changed files with 1 additions and 0 deletions
1
.github/workflows/predefined.yml
vendored
1
.github/workflows/predefined.yml
vendored
|
@ -7,6 +7,7 @@
|
||||||
---
|
---
|
||||||
name: CI with predefined GitHub actions
|
name: CI with predefined GitHub actions
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
jobs:
|
jobs:
|
||||||
php-lint:
|
php-lint:
|
||||||
name: "PHP linter"
|
name: "PHP linter"
|
||||||
|
|
Loading…
Reference in a new issue