mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
[FEATURE] Add automerging of green Dependabot PRs (#756)
Now dependency updates by Dependabot will be automerged if/when all required checks are green. This will reduce the repetetive work of merging all these update PRs, and we have been heavily relying on our CI pipeline to check if a depenceny update is safe to merge anyway. Attaching any of the labels `wip` or `blocked` to a PR will block the automerging.
This commit is contained in:
parent
107ffabab5
commit
47033ca0bb
2 changed files with 17 additions and 0 deletions
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
@ -250,3 +250,19 @@ jobs:
|
|||
- typo3-version: "^12.2"
|
||||
php-version: "8.1"
|
||||
composer-dependencies: highest
|
||||
automerge:
|
||||
name: Dependabot auto-merge
|
||||
runs-on: ubuntu-22.04
|
||||
needs: [ php-lint, code-quality, code-quality-frontend, unit-tests, functional-tests ]
|
||||
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target' }}
|
||||
steps:
|
||||
- name: automerge
|
||||
uses: pascalgn/automerge-action@v0.15.6
|
||||
env:
|
||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||
MERGE_ERROR_FAIL: true
|
||||
MERGE_LABELS: "dependencies,!blocked,!wip"
|
||||
MERGE_METHOD: "rebase"
|
||||
MERGE_READY_STATE: "clean,unstable"
|
||||
MERGE_RETRIES: 0
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
## x.y.z
|
||||
|
||||
### Added
|
||||
- Add automerging of green Dependabot PRs (#756)
|
||||
|
||||
### Changed
|
||||
- Set the minimal 12LTS version to 12.1 (#702)
|
||||
|
|
Loading…
Reference in a new issue