Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Demo Neutral Action

Demo Neutral Action #1

Workflow file for this run

name: Neutral Outcome Example
on:
workflow_dispatch:
jobs:
neutral_example:
runs-on: ubuntu-latest
steps:
- name: Set neutral conclusion
run: echo "::set-output name=CONCLUSION::neutral"
- name: Print message
run: echo "This workflow intentionally has a neutral conclusion."
check_conclusion:
needs: neutral_example
runs-on: ubuntu-latest
steps:
- name: Check conclusion
run: echo "Conclusion was ${{ needs.neutral_example.outputs.CONCLUSION }}"