Skip to content

Commit

Permalink
Create first-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bob-okeefe authored Dec 5, 2023
1 parent 5b8dad8 commit 6f9581b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/first-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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"
- 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'

0 comments on commit 6f9581b

Please sign in to comment.