Skip to content

Git Release

Git Release #6

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Git Release
on:
workflow_dispatch:
inputs:
dry-run:
description: "Dry run"
required: false
default: false
type: boolean
pull_request:
paths:
- ".github/workflows/git-release.yaml"
- "README.md"
push:
branches: ["main"]
paths:
- "README.md"
jobs:
release:
uses: mirceanton/reusable-workflows/.github/workflows/git-release-calver.yaml@feb7161818c3ae82cd4ea25c606c1feefa19643d
secrets: inherit
with:
dry-run: ${{ inputs.dry-run || github.event.name == 'pull_request' }}