
steyep
Member-
Content Count
6 -
Joined
-
Last visited
-
Days Won
2
steyep last won the day on May 29 2017
steyep had the most liked content!
About steyep
-
Rank
Newbie
Contact Methods
-
Website URL
github.com/steyep
Recent Profile Visitors
713 profile views
-
andrewdcato reacted to a post in a topic: Jira Workflow
-
The first issue, that's already been discussed, is the fact that you're outputting the Archive.zip file into the directory that's executing the script. You can prepend the output file name with a directory and you should be good to go. If you're intending to output the zip file into the directory of the file you're compressing, you can access that with dirname. The second issue is that multiple files are passed to the script with a tab delimiter – meaning there will be more than one argument passed to your script so zipping {query} or $1 will only zip the first file. Here's what I
-
stufflebeam reacted to a post in a topic: Jira Workflow
-
steyep reacted to a post in a topic: Progress Bar
-
How to use Bash variable in Script Filter output?
steyep replied to clearphase's topic in Workflow Help & Questions
You'll also need to put quotes around the $time variable. Or you could get rid of your variable all together: cat << EOB {"items": [ { "title": "$(date "+%H:%M %p")" } ]} EOB -
rigrassm reacted to a post in a topic: Jira Workflow
-
For the site that you're trying to log in, check the entry in 1Password and make sure you have "Submit when enabled" or "Always submit" as the option for "submit."
-
alexreg reacted to a post in a topic: Alfred 2 running in background?!
-
Yes. Or that much more concise solution
-
How about this? workflows="$HOME/Dropbox/Alfred.alfredpreferences/workflows" # Path to your workflows find $workflows -type f -exec sh -c 'grep -q "Alfred 2" "$0" && echo "$0"' "{}" \; You can run this in the terminal to return a list of files containing the string "Alfred 2"
-
seanrwcrawford reacted to a post in a topic: Jira Workflow
-
I've noticed a few threads on the forum that integrate Alfred with JIRA but wasn't quite able to find one that did everything I was looking for so I decided to try my hand at writing my own (in Node.js). Here are a few of the features: List issues assigned to you List issues that you are "watching" Search JIRA Assign an issue to a user Transition the status of an issue Quickly add a comment to an issue View an issue's priority Watch/Unwatch an issue Open issue in a web browser I'm still in the process of developing the work