feat(golang-rewrite): correct asdf-version workflow step to produce version as output (second attempt) #312
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: Lint | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
semantic-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
scopes: | | |
# The scope for all the Golang rewrite commits | |
golang-rewrite | |
# A list of all used scopes can be computed by running this command: | |
# | |
# git log --pretty=format:%s | rg '^[^: ]*\(([^):]*)\).*' -r '$1' | sort | uniq | |
# | |
# We only want to allow a limited set of scopes going forward, so | |
# the list of valid scopes has been pared down here. | |
docs | |
website | |
plugin | |
completions |