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