From 8cfebb3f23f51b75d8c4efbf9323c39205be33e3 Mon Sep 17 00:00:00 2001 From: Daniel Avila Date: Sat, 27 Apr 2024 16:58:45 -0500 Subject: [PATCH] Create first-action.yml --- .github/workflows/first-action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/first-action.yml diff --git a/.github/workflows/first-action.yml b/.github/workflows/first-action.yml new file mode 100644 index 0000000..9f1e02d --- /dev/null +++ b/.github/workflows/first-action.yml @@ -0,0 +1,10 @@ +name: First Workflow +on: workflow_dispatch +jobs: + first-job: + runs-on: ubuntu-latest + steps: + - name: Print greeting + run: echo "Hola, corazona...!!!" + - name: Print goodbye + run: echo "Chau, corazona...!!!"