build(deps): bump golang.org/x/oauth2 from 0.0.0-20190604053449-0f29369cfe45 to 0.27.0 #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: dev | |
| # See https://help.github.com/en/articles/events-that-trigger-workflows#webhook-events | |
| on: | |
| # check_run: | |
| # types: | |
| # - created | |
| # - rerequested | |
| # - completed | |
| # - requested_action | |
| # check_suite: | |
| # types: | |
| # - completed | |
| # - requested | |
| # - rerequested | |
| pull_request: | |
| types: | |
| - assigned | |
| - unassigned | |
| - labeled | |
| - unlabeled | |
| - opened | |
| - edited | |
| # - closed | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| - locked | |
| - unlocked | |
| - review_requested | |
| - review_request_removed | |
| jobs: | |
| ensure-dev1: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.repository, 'variantdev/') | |
| steps: | |
| - run: | | |
| echo GITHUB_ACTION: $GITHUB_ACTION | |
| echo GITHUB_WORKFLOW: $GITHUB_WORKFLOW | |
| echo GITHUB_EVENT_NAME: $GITHUB_EVENT_NAME | |
| echo GITHUB_EVENT_PATH: $GITHUB_EVENT_PATH | |
| cat $GITHUB_EVENT_PATH | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-go@v1 | |
| with: | |
| go-version: '1.12.7' | |
| - run: | | |
| make build | |
| - name: dev1 | |
| run: | | |
| bin/actions exec -check-run-name dev1 -- bin/actions pullvet -require-any -label dev1 | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| ensure-dev2: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.repository, 'variantdev/') | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-go@v1 | |
| with: | |
| go-version: '1.12.7' | |
| - run: | | |
| make build | |
| - name: dev2 | |
| run: | | |
| bin/actions exec -check-run-name dev2 -- bin/actions pullvet -require-any -label dev2 -label dev3 | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| ensure-dev3: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.repository, 'variantdev/') | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-go@v1 | |
| with: | |
| go-version: '1.12.7' | |
| - run: | | |
| make build | |
| - name: dev3 | |
| run: | | |
| bin/actions exec -status-context checks/dev3 -- bin/actions pullvet -require-any -label dev3 | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| ensure-changelog: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.repository, 'variantdev/') | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-go@v1 | |
| with: | |
| go-version: '1.12.7' | |
| - run: | | |
| make build | |
| - name: changelog | |
| run: | | |
| bin/actions exec -status-context checks/changelog -- bin/actions pullvet -require-any -note changelog1 -note changelog2 | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| ensure-releasenote: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.repository, 'variantdev/') | |
| steps: | |
| - uses: docker://variantdev/actions:latest | |
| with: | |
| entrypoint: sh | |
| args: | | |
| -c "actions exec -status-context checks/releasenote -- actions pullvet -require-any -label releasenote/none -note releasenote" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |