From 97aa3659df67cd0d3053c1e486801254e5ab00a5 Mon Sep 17 00:00:00 2001 From: Laszlo Fogas Date: Fri, 19 Feb 2021 09:28:33 +0100 Subject: [PATCH] Removing gha builds --- .github/workflows/go.yml | 25 ------------------------- .github/workflows/greetings.yml | 13 ------------- 2 files changed, 38 deletions(-) delete mode 100644 .github/workflows/go.yml delete mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index ff8630a50..000000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Go -on: [push] - -jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - - name: Set up Go 1.13 - uses: actions/setup-go@v2 - with: - go-version: 1.13.15 - - - name: Check out code into the Go module directory - uses: actions/checkout@v1 - with: - fetch-depth: 1 - - - name: Test - run: | - go test -cover $(go list ./...) - - - name: Build - run: ./.drone.sh diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index e6c48d0c3..000000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Greetings - -on: [pull_request, issues] - -jobs: - greeting: - runs-on: ubuntu-latest - steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: 'Looks like this is your first issue. Welcome to the community! :wave:' - pr-message: 'Looks like you just opened your first PR. :clap: This is awesome, thanks and keep up!'