Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ReynaldoFirstWorkflow

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'