{fix] Add stuff

This commit is contained in:
Uttarayan Mondal
2023-07-21 12:26:37 +05:30
parent a1d6caa5fb
commit 7462ead329
4 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
function cclose --argument-names issue target --description "Comment and close github issue"
if test -z "$issue"
echo "Usage: cclose {issue num}"
return 1
end
gh issue comment "$issue"
gh issue close "$issue"
end