You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, the problem here is that you need a configuration file listing projects that you want to generate this report for. Sorry that it's not obvious from the help 😅. Here is an example of such config:
#!/bin/bash# I have all my projects in one place then located in org-name/repo-name subfolders
prefix="/Users/laughedelic/dev"# here we define a function that dispatches projectsfunctionproject() {
case$1in# "scala" project: first line in the heading for this project, then a list of repositories
scala) echo"""Scala_toolsohnosequences/statikaohnosequences/cosas""" ;;
general) echo"""Generalohnosequences/sbt-s3-resolverohnosequences/sbt-github-releaseohnosequences/nice-sbt-settingslaughedelic/literator""" ;;
confs) echo"""Conferencesbio4j/FOSDEM-2014ohnosequences/IWBBIO-2014laughedelic/biss2014ohnosequences/JdBI2014"""esac
}
# this is just the list of projects you want to generate report for# in the function above you can define all you projects, # but here choose only some of them and in particular order
projects=(
scala
confs
general
)
# this is optional, just tuning the format of the output:
week_format='## %s \n\n'
project_format='### %s \n\n'
repo_format='#. [_repo_](https://github.com/_repo_) \n'
commit_format=' + `[%h]` `_time_` — %s'
total_format='\n In total: _human_time_\n'
And yes, I should improve this command, so that without config it generates report just for the current repository...
gtm weekly-report
/home/semen/bin/gtm: line 576: : No such file or directory
Failed to source '' script
Line 576 is the last line in this code snipped:
The text was updated successfully, but these errors were encountered: