21 lines
455 B
YAML
21 lines
455 B
YAML
name: out_in_puts
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
title:
|
|
required: true
|
|
type: string
|
|
body:
|
|
required: true
|
|
type: string
|
|
jobs:
|
|
create_issue_on_failure:
|
|
runs_on: ubuntu-latest
|
|
steps:
|
|
- name: Set Debug
|
|
id: set-debug-stage
|
|
run: echo "BUILD_STAGE=debug" >> $GITHUB_OUTPUT
|
|
|
|
- name: Get Stage
|
|
run: echo "The build stage is ${{ steps.set-debug-stage.outputs.BUILD_STAGE}}"
|