Launchcontainers: A Python tool for launching containerized analysis on HPC #35
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: "Label from issue first message body" | |
# See https://github.com/marketplace/actions/regex-issue-labeler | |
on: | |
issues: | |
types: [opened, edited] | |
jobs: | |
labeller: | |
if: github.repository_owner == 'brainhackorg' | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: github/[email protected] | |
with: | |
# Secret token needed (not sure which permisions though) | |
repo-token: "${{ secrets.LABELLER }}" | |
# File with label/regex match dictionary | |
configuration-path: .github/labeler.yml | |
# This can be increased if the dictionary undergoes a breaking change | |
enable-versioned-regex: 0 |