Skip to content

DOC: Titles of long function names in API Reference truncated and horizontal scroll bar in code examples in 3 column layout #345

DOC: Titles of long function names in API Reference truncated and horizontal scroll bar in code examples in 3 column layout

DOC: Titles of long function names in API Reference truncated and horizontal scroll bar in code examples in 3 column layout #345

Workflow file for this run

name: "Issue Labeler"
on:
issues:
types: [opened]
jobs:
label_issue:
# Permissions needed for labelling issues automatically
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication
permissions:
contents: read
issues: write
runs-on: ubuntu-latest
steps:
# label based on issue title
- uses: github/issue-labeler@v3.3
if: github.repository == 'scipy/scipy'
with:
configuration-path: .github/labeler.yml
include-title: 1
include-body: 0
enable-versioned-regex: 0
repo-token: ${{ secrets.GITHUB_TOKEN }}