Lines Matching +full:- +full:- +full:user +full:- +full:token
3 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 python3 ./count_running_jobs.py --token=<github token>
11 Note that the token argument is optional. If it is not specified, the queries
21 def main(token, filter_gha_runners): argument
23 github.Github(args.token)
24 .get_repo("llvm/llvm-project")
57 "--token",
59 help="The Github token to use to authorize with the API",
64 "--output-file",
66 help="The output file to write time-series data to",
71 "--data-collection-interval",
78 "--filter-gha-runners",
83 "--no-filter-gha-runners",
93 # If an output file is specified, the user must also specify the data
96 print("A data collection interval must be specified when --output_file is used")
106 current_job_count = main(args.token, args.filter_gha_runners)
116 main(args.token, args.filter_gha_runners)