From 370adf4cb65839f126591bf7ab3e92ca1d261296 Mon Sep 17 00:00:00 2001 From: Tony Chia Date: Wed, 18 Sep 2019 13:28:56 -0700 Subject: [PATCH] converted main.workflow to Actions V2 yml files --- .github/main.workflow | 8 -------- .github/workflows/push.yml | 10 ++++++++++ 2 files changed, 10 insertions(+), 8 deletions(-) delete mode 100644 .github/main.workflow create mode 100644 .github/workflows/push.yml diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index a412d01..0000000 --- a/.github/main.workflow +++ /dev/null @@ -1,8 +0,0 @@ -workflow "Trigger: Push" { - on = "push" - resolves = ["Shellcheck"] -} - -action "Shellcheck" { - uses = "ludeeus/action-shellcheck@master" -} \ No newline at end of file diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..107bbc6 --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,10 @@ +on: push +name: 'Trigger: Push' +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Shellcheck + uses: ludeeus/action-shellcheck@master