fix(deps): update github.com/keybase/go-keychain digest to 7f41edf #371
This file contains 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: CI | |
on: | |
pull_request: | |
types: [ labeled ] | |
jobs: | |
check-generate-go: | |
if: ${{ contains( github.event.label.name, 'needs-go-generate') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail on needs-go-generate | |
run: echo Failed, needs go generate. && exit 1 | |
check-generate-yarn: | |
if: ${{ contains( github.event.label.name, 'needs-yarn-install') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail on needs-go-yarn | |
run: echo Failed, needs yarn install. && exit 1 |