forked from nf-core/modules
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (24 loc) · 909 Bytes
/
issues.yml
File metadata and controls
25 lines (24 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
on:
issues:
types: [opened, labeled]
pull_request:
types: [opened, labeled]
issue_comment:
types: [created]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to One Project
steps:
- name: Assign issues and pull requests with `new subworkflow` and `update subworkflow` label to project 38 (Hackathon Oct/2022)
uses: srggrs/assign-one-project-github-action@1.2.1
if: |
contains(github.event.issue.labels.*.name, 'new subworkflow') ||
contains(github.event.issue.labels.*.name, 'update subworkflow') ||
contains(github.event.pull_request.labels.*.name, 'new subworkflow') ||
contains(github.event.pull_request.labels.*.name, 'update subworkflow')
with:
project: "https://github.com/orgs/nf-core/projects/38"
column_name: "TODO"