Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin in /compiler/java… #80

Bump org.apache.maven.plugins:maven-surefire-plugin in /compiler/java…

Bump org.apache.maven.plugins:maven-surefire-plugin in /compiler/java… #80

Workflow file for this run

# Check copyright
name: Check Copyright
on:
push:
branches:
- release/**
paths:
- cli/**
- compiler/**
workflow_dispatch:
jobs:
copyright-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get branch name
id: vars
run: echo ::set-output name=short_ref::${GITHUB_REF#refs/*/}
- name: Check Copyright
uses: VinnyBabuManjaly/[email protected]
with:
CopyrightString: '/*\nCopyright © 2021-2023 Compose Generator Contributors\nAll rights reserved.\n*/\n\n'
Path: 'cli, compiler'
IgnorePath: 'cli/vendor, compiler/cpp/test/test-files, compiler/java/src/test'
FileType: '.go, .cpp, .h, .java'
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: ${{ steps.vars.outputs.short_ref }}
title: Update copyright notice
body: Automated update of copyright notice, generated by the [check copyright](https://github.com/compose-generator/ccom/actions/workflows/copyright.yml) workflow.
labels: documentation
assignees: marcauberer
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true