Create copy_repo.yaml #1
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
name: Release a repo with tag | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
inputs: | ||
title: | ||
description: 'Release title: some special text for the release, version number used if not provided' | ||
required: false | ||
default: '' | ||
jobs: | ||
release_pkg: | ||
uses: DCAN-Labs/dsm-gha-release_repo/.github/workflows/workflow.yml@main | ||
Check failure on line 16 in .github/workflows/copy_repo.yaml
|
||
secrets: inherit | ||
with: | ||
remote_owner: 'DCAN-Labs' | ||
remote_repo: 'hbcd-docs' | ||
release_title: ${{ inputs.title }} | ||
version_major: ${{ vars.VAR_RELEASE_VERSION_MAJOR }} | ||
is_pkg: false | ||
exclude: '.github/*' |