21 lines
368 B
YAML
21 lines
368 B
YAML
name: Check Crate Name
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'index/**.toml'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check:
|
|
uses: ./.github/workflows/check-with-script.yml
|
|
with:
|
|
script: check-crate-name.sh
|
|
script_arg: ${{github.event.pull_request.title}}
|