From c7e97f25c0d22d4479d695bdd388e22713cd62a0 Mon Sep 17 00:00:00 2001 From: Peter Singh Date: Mon, 5 Apr 2021 19:07:13 +0100 Subject: [PATCH 1/3] test workflow --- .github/workflows/hello.yml | 11 +++++++++++ .github/workflows/reviewdog.yml | 15 --------------- 2 files changed, 11 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/hello.yml delete mode 100644 .github/workflows/reviewdog.yml diff --git a/.github/workflows/hello.yml b/.github/workflows/hello.yml new file mode 100644 index 00000000..bd3dd634 --- /dev/null +++ b/.github/workflows/hello.yml @@ -0,0 +1,11 @@ +name: Hello GitHub Actions + +on: [push] + +jobs: + hello: + runs-on: ubuntu-action-runner + + steps: + - name: Hello, World in GitHub Actions + run: echo 'Hello, World' diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml deleted file mode 100644 index 4a9484a9..00000000 --- a/.github/workflows/reviewdog.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: reviewdog -on: [pull_request] -jobs: - brakeman: - name: runner / brakeman - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v1 - - name: brakeman - uses: reviewdog/action-brakeman@v1 - with: - brakeman_version: 4.8.2 - github_token: ${{ secrets.github_token }} - reporter: github-pr-review # Default is github-pr-check From d711f049f470eed76e21f40be25d0d4879b6cfd7 Mon Sep 17 00:00:00 2001 From: Peter Singh Date: Mon, 5 Apr 2021 19:28:02 +0100 Subject: [PATCH 2/3] Update hello.yml --- .github/workflows/hello.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hello.yml b/.github/workflows/hello.yml index bd3dd634..9c8b9fab 100644 --- a/.github/workflows/hello.yml +++ b/.github/workflows/hello.yml @@ -4,7 +4,7 @@ on: [push] jobs: hello: - runs-on: ubuntu-action-runner + runs-on: ubuntu steps: - name: Hello, World in GitHub Actions From 0e657b3ca3e1277cc2906627854e4dc826eecf57 Mon Sep 17 00:00:00 2001 From: Peter Singh Date: Tue, 6 Apr 2021 07:57:55 +0100 Subject: [PATCH 3/3] Update hello.yml --- .github/workflows/hello.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hello.yml b/.github/workflows/hello.yml index 9c8b9fab..b2f875d4 100644 --- a/.github/workflows/hello.yml +++ b/.github/workflows/hello.yml @@ -4,7 +4,7 @@ on: [push] jobs: hello: - runs-on: ubuntu + runs-on: lightbulb steps: - name: Hello, World in GitHub Actions