mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-20 02:15:12 -07:00
31 lines
826 B
YAML
31 lines
826 B
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
|
|
jobs:
|
|
semantic-pr:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: amannn/action-semantic-pull-request@v5.5.3
|
|
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
|