From 5432104c609ceadb7d99ab69c4cd3729b2d27fce Mon Sep 17 00:00:00 2001 From: Gonzalo Pincheira A Date: Fri, 6 Sep 2024 10:52:41 -0400 Subject: [PATCH] ci: add pipeline --- .github/workflows/pipeline.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/pipeline.yml diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml new file mode 100644 index 0000000..62e470e --- /dev/null +++ b/.github/workflows/pipeline.yml @@ -0,0 +1,11 @@ +name: Pipeline +on: + schedule: + - cron: "*/5 * * * *" + workflow_dispatch: +jobs: + scripts-job: + runs-on: ubuntu-latest + steps: + - run: echo "Hola $GITHUB_ACTOR" + - run: echo "Pipeline en contexto de $GITHUB_REF"