Update Parent #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: The javapoet-type-guesser Authors | |
# SPDX-License-Identifier: 0BSD | |
name: Update Parent | |
on: | |
schedule: | |
- cron: 0 1 4 * * | |
jobs: | |
parent: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Git Repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/managed-java | |
- name: Update Parent | |
run: mvn --batch-mode --define generateBackupPoms=false versions:update-parent | |
- id: cpr | |
name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.PAT }} | |
commit-message: Update parent to latest version | |
committer: GitHub <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
title: Update parent to latest version | |
body: | | |
`mvn --batch-mode --define generateBackupPoms=false versions:update-parent` | |
labels: | | |
enhancement | |
assignees: | | |
sebhoss | |
draft: false | |
base: main | |
branch: update-parent | |
delete-branch: true | |
- name: Enable Pull Request Automerge | |
if: steps.cpr.outputs.pull-request-operation == 'created' | |
run: gh pr merge --rebase --auto ${{ steps.cpr.outputs.pull-request-number }} | |
env: | |
GH_TOKEN: ${{ secrets.PAT }} |