mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-25 09:56:12 +01:00
parent
9f1c0687b4
commit
6e8aef2daf
5 changed files with 13 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -9,6 +9,8 @@ on:
|
|||
pull_request:
|
||||
schedule:
|
||||
- cron: '15 3 * * 1'
|
||||
permissions:
|
||||
contents: read
|
||||
jobs:
|
||||
php-lint:
|
||||
name: "PHP linter"
|
||||
|
|
4
.github/workflows/codecoverage.yml
vendored
4
.github/workflows/codecoverage.yml
vendored
|
@ -6,9 +6,13 @@ on:
|
|||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
permissions:
|
||||
contents: read
|
||||
jobs:
|
||||
code-coverage:
|
||||
name: "Calculate code coverage"
|
||||
permissions:
|
||||
actions: write
|
||||
runs-on: ubuntu-22.04
|
||||
env:
|
||||
DB_DATABASE: typo3
|
||||
|
|
2
.github/workflows/predefined.yml
vendored
2
.github/workflows/predefined.yml
vendored
|
@ -8,6 +8,8 @@
|
|||
name: CI with predefined GitHub actions
|
||||
on:
|
||||
workflow_dispatch:
|
||||
permissions:
|
||||
contents: read
|
||||
jobs:
|
||||
php-lint:
|
||||
name: "PHP linter"
|
||||
|
|
5
.github/workflows/publish.yml
vendored
5
.github/workflows/publish.yml
vendored
|
@ -4,9 +4,12 @@ on:
|
|||
push:
|
||||
tags:
|
||||
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
jobs:
|
||||
publish:
|
||||
permissions:
|
||||
actions: write
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
|
|
|
@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
## x.y.z
|
||||
|
||||
### Added
|
||||
- Harden the GitHub Actions workflows (#649)
|
||||
- Add support for TYPO3 12 (#652)
|
||||
- Add `.gitignore` entry for JetBrains Fleet editor (#642)
|
||||
|
||||
|
|
Loading…
Reference in a new issue