Double check tests for submodule deprecation of interpnd and dfitpack #2
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: "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@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4 | |
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 }} |