Fix test stale repositories workflow (#3270)

* fix typo in README.md

fixes #3204

* test

* Delete main.yml

* modify workflow
This commit is contained in:
Tony Kappen 2020-10-05 04:59:38 -04:00 committed by GitHub
parent 0c8275112b
commit f77a13db41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,10 @@ jobs:
matrix:
go: ['1.15.x']
steps:
- shell: bash
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: run script
run: go run test_stale_repositories.go scripts.go
env:
OAUTH_TOKEN: ${{secrets.OAUTH_TOKEN}}
run: go get -t -v ./... && go run test_stale_repositories.go scripts.go
GITHUB_OAUTH_TOKEN: ${{secrets.OAUTH_TOKEN}}