Prevent using user name with bitbucket_repository_user_permission. Must be UUID. #154
Workflow file for this run
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: Go Linter | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
golangci: | |
name: Run linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.19' | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.50.1 | |
only-new-issues: true |