Skip to content

Commit

Permalink
peaufinage
Browse files Browse the repository at this point in the history
  • Loading branch information
Manon Delahaye committed Feb 6, 2024
1 parent ddba025 commit 931e1e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion actions/issue_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def run(self, project_id, title, description, assignee_ids, labels, epic_id, due
project = gl.projects.get(project_id)

# Create new issue
issue = project.issues.create({'title': title, 'description': description, 'assignee_ids': assignee_ids, 'labels': labels, 'epic_id': epic_id, 'due_date': due_date, 'weight': weight})
issue = project.issues.create({ 'title': title, 'description': description, 'assignee_ids': assignee_ids,
'labels': labels, 'epic_id': epic_id, 'due_date': due_date, 'weight': weight})

return (True, issue)
2 changes: 1 addition & 1 deletion actions/issue_create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ parameters:
type: string
position: 2
assignee_ids:
description: "List of assignee IDs"
description: "The comma-separated list of assignee IDs"
type: string
position: 3
labels:
Expand Down

0 comments on commit 931e1e8

Please sign in to comment.