github-activity-counter icon indicating copy to clipboard operation
github-activity-counter copied to clipboard

Cloud Run service for GitHub event Webhook to monitor repo or org activity in real-time in Stackdriver and analyze activity through ad-hoc SQL queries in BigQuery

Results 5 github-activity-counter issues
Sort by recently updated
recently updated
newest added

I feel like there should be a deployment option to disable the Cloud Dataflow use. Pretty much everything else used by this tool feels pay-as-you-go/serverless. However, it seems like Dataflow...

enhancement

I think `set -e` is missing in the script. e.g. ctrl+f "ERROR" below while executing `bin/config` ``` Enter a selection (1 - 15): 12 BigQuery configuration complete! Type "bq" to...

bug

While I was looking to adopt this, I wished to see a section on how would be the estimated pricing look like per month, maybe something like: | product |...

Scripts like bin/setup take a very long time initially on a clean project. Adding `set -x` can easily let users know what command is being executed.

right now when any $VARIABLE is not set, it will not fail and use empty string. either: - use `set -u`, or - use each reference as `"${VARIABLE:? VARIABLE not...