chore: update GitHub Actions to use reusable workflows #1
Workflow file for this run
This file contains hidden or 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
| # Example: Copy this to your repo as .github/workflows/release.yml | ||
| # Configuration is read from .github/project.yml - no inputs needed! | ||
| name: Release | ||
| on: | ||
| pull_request: | ||
| types: [closed] | ||
| paths: | ||
| - '.github/project.yml' | ||
| workflow_dispatch: | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| release: | ||
| if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' | ||
| uses: cuioss/cuioss-organization/.github/workflows/reusable-maven-release.yml@9ce5ba83776bab80eeffb695f7374e334cf6bd9f # v0.2.0 | ||
|
Check failure on line 18 in .github/workflows/release.yml
|
||
| secrets: inherit | ||