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!'