Skip to content

Refactor imports and logging, update persistence libraries #4

Refactor imports and logging, update persistence libraries

Refactor imports and logging, update persistence libraries #4

Workflow file for this run

name: GuicedEE OpenAPI
on:
workflow_dispatch:
inputs:
centralRelease:
type: boolean
description: Run a release to maven central
default: false
push:
branches:
- main
- master
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main
- master
jobs:
verify:
if: ${{ github.event_name == 'pull_request' && github.event.action != 'closed' }}
uses: GuicedEE/Workflows/.github/workflows/projects.yml@master
with:
baseDir: ''
name: 'Guiced OpenAPI'
sonarProjectName: 'GuicedEE_OpenAPI'
sonarOrganization: 'guicedee'
skipDeploy: 'true'
secrets: inherit
deploy:
if: >-
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true)
uses: GuicedEE/Workflows/.github/workflows/projects.yml@master
with:
baseDir: ''
name: 'Guiced OpenAPI'
sonarProjectName: 'GuicedEE_OpenAPI'
sonarOrganization: 'guicedee'
publishToCentral: ${{inputs.centralRelease}}
secrets: inherit