Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 478 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 478 Bytes

mkdocstrings labels

Use the following command to clone labels from this repository into another:

gh label clone -f mkdocstrings/github-labels -R mkdocstrings/python

Shell commands to apply labels to all repositories within @mkdocstrings (except a few):

for repo in $(gh repo list mkdocstrings --json name --jq '.[].name' --limit 100 | grep -ve github -e vba -e crystal); do
  gh label clone -f mkdocstrings/github-labels -R mkdocstrings/$repo
done