8000 Add PR Links as Task List Items to Issues by saadmk11 · Pull Request #518 · python/bedevere · GitHub
[go: up one dir, main page]

Skip to content

Add PR Links as Task List Items to Issues #518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Nov 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update bedevere/util.py
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
  • Loading branch information
saadmk11 and ezio-melotti authored Nov 11, 2022
commit 2dd66ef482e989fa3c96b64d367e2f48ccdc3430
2 changes: 1 addition & 1 deletion bedevere/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
ISSUE_BODY_TASK_LIST_PATTERN = re.compile(
rf"(?P<start>{ISSUE_BODY_OPENING_TAG}\r?\n```\[tasklist\])"
rf"(?P<tasks>.*?)"
rf"(?P<end>```\s{{1,2}}{ISSUE_BODY_CLOSING_TAG})",
rf"(?P<end>```\r?\n{ISSUE_BODY_CLOSING_TAG})",
flags=re.DOTALL
)

Expand Down
0