Skip to content

Increase message length #3

Increase message length

Increase message length #3

name: First Workflow
on:
workflow_dispatch:
issues:
types: [opened]
jobs:
job1:
runs-on: ubuntu-latest
steps:
- name: Step one
run: echo "Log from step one"
env:
VARIABLE_NAME: value
- name: Step two
run: echo "Log from step two"
job2:
needs: job1
runs-on: ubuntu-latest
steps:
- name: Cowsays
uses: mscoutermarsh/cowsays-action@master
with:
text: 'Ready for prod--ship it!'
color: 'magenta'