File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change 4646 python github_branch_analyzer_with_date.py
4747 python analyze_branch_data_with_date.py
4848
49- - name : Run branch analysis for past intervals
50- env :
51- GITHUB_TOKEN : ${{ secrets.GH_PAT }}
52- GITHUB_REPO : ${{ github.repository }}
53- MAIN_BRANCH : main
54- RELEASE_BRANCH : release
55- run : |
56- # Run analysis for the last 35 minutes with 5-minute intervals
57- for i in {1..7}; do
58- timestamp=$(date -d "$((i * 5)) minutes ago" +%Y-%m-%dT%H:%M:%S)
59- echo "Running analysis for $timestamp"
60- python github_branch_analyzer_with_date.py --timestamp $timestamp --output "branch_data_$(date -d "$timestamp" +%Y%m%d%H%M%S).json"
61- python analyze_branch_data_with_date.py "branch_data_$(date -d "$timestamp" +%Y%m%d%H%M%S).json" "analyzed_branch_data_$(date -d "$timestamp" +%Y%m%d%H%M%S).json"
62- done
63-
6449 - name : Setup visualization directory
6550 run : |
6651 # Create visualization directory if it doesn't exist
You can’t perform that action at this time.
0 commit comments