summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-05-08 20:18:09 +0300
committerPaul Buetow <paul@buetow.org>2025-05-08 20:18:09 +0300
commit2fd2dee2be3ff33660baa3149e9aaaa639d8215d (patch)
treee25810b2988bdae7f3a5860f4e8b07a878e114fe
parent473b05b2e09bb430ca486b1b39845c4d7fa91f28 (diff)
Update
-rw-r--r--dotfiles/fish/conf.d/taskwarrior.fish9
1 files changed, 9 insertions, 0 deletions
diff --git a/dotfiles/fish/conf.d/taskwarrior.fish b/dotfiles/fish/conf.d/taskwarrior.fish
index eee84c7..0684458 100644
--- a/dotfiles/fish/conf.d/taskwarrior.fish
+++ b/dotfiles/fish/conf.d/taskwarrior.fish
@@ -54,6 +54,15 @@ function taskwarrior::add::standup
if test (count $argv) -gt 0
task add priority:L +work +standup +sre +nosched $argv
task add priority:L +work +standup +storage +nosched $argv
+
+ if test -f ~/git/helpers/jira/jira.rb
+ echo "Do you want to raise a Jira ticket? (y/n)"
+ read -l user_input
+ if test "$user_input" = y
+ ruby ~/git/helpers/jira/jira.rb --raise "$argv"
+ end
+ end
+
else
vit +standup
end