Skip to content

Commit 07755bc

Browse files
Merge pull request #3343 from ArmDeveloperEcosystem/main
Production update
2 parents b8431de + 69dd7f9 commit 07755bc

56 files changed

Lines changed: 4865 additions & 2585 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/weekly_stats_update.yml

Lines changed: 25 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -4,61 +4,42 @@
44
name: Stats file weekly update
55

66
on:
7-
# Manual run enable
87
workflow_dispatch:
9-
10-
# Automatic run enable
118
schedule:
129
- cron: '00 1 * * 1' # At 01:00 on Mondays.
13-
14-
15-
1610

1711
jobs:
18-
# This workflow contains a single job
1912
update_stats:
2013
if: github.repository == 'ArmDeveloperEcosystem/arm-learning-paths'
2114
runs-on: ubuntu-latest
2215
steps:
2316
- name: Check out current repo
24-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
2518
with:
26-
fetch-depth: 0
27-
28-
# Use for debugging ssh sessions if needed
29-
#- name: Setup tmate session
30-
# uses: mxschmitt/action-tmate@v3
31-
32-
33-
# Test GitHub API if needed
34-
#- name: Test GitHUB API
35-
# run: |
36-
# curl -L \
37-
# -H "Accept: application/vnd.github+json" \
38-
# -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}"\
39-
# -H "X-GitHub-Api-Version: 2022-11-28" \
40-
# https://api.github.com/repos/ArmDeveloperEcosystem/arm-learning-paths/issues
41-
42-
43-
# Run python script to update files
44-
- name: Run Python script to update files
45-
run: |
46-
cd tools/
47-
pip install -r requirements.txt
48-
python3 stats_data_generate.py --token ${{ secrets.GITHUB_TOKEN }} --repo https://api.github.com/repos/ArmDeveloperEcosystem/arm-learning-paths/
49-
50-
# GitHub credential setup
51-
- name: setup git config
52-
run: |
53-
# setup the username and email.
54-
git config user.name "GitHub Actions Stats Bot"
55-
git config user.email "<>"
56-
57-
# Commit updated files in a new PR
58-
- name: Commit updated stats files to repository
19+
fetch-depth: 1
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: '3.11'
25+
26+
- name: Install dependencies
27+
run: pip install pyyaml requests
28+
29+
- name: Run stats generation script
30+
run: python3 tools/stats_data_generate.py --token ${{ secrets.GITHUB_TOKEN }}
31+
32+
- name: Fetch content_over_time.png from roadmap repo
5933
run: |
60-
git add data/stats_weekly_data.yml
61-
# Push and commit only if changes to commit; if not, say so and end.
62-
git commit -m 'automatic update of stats files' && git push origin main || echo "No changes to commit"
34+
curl -sL -o content/stats/content_over_time.png \
35+
"https://raw.githubusercontent.com/ArmDeveloperEcosystem/roadmap/main/reports/content-count/content_over_time.png"
6336
37+
- name: Setup git config
38+
run: |
39+
git config user.name "GitHub Actions Stats Bot"
40+
git config user.email "<>"
6441
42+
- name: Commit updated stats files
43+
run: |
44+
git add data/stats_weekly_data.yml content/stats/content_over_time.png
45+
git commit -m 'automatic update of stats files' && git push origin main || echo "No changes to commit"

.wordlist.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6205,3 +6205,20 @@ Antigravity
62056205
Moby
62066206
antigravity
62076207
callout
6208+
Cypher
6209+
Marek
6210+
Mayne
6211+
Memgraph
6212+
Memgraph's
6213+
Micha
6214+
NetworkX
6215+
PageRank
6216+
RedHatAI
6217+
Sabika
6218+
TPOT
6219+
TTFT
6220+
Tasneem
6221+
cypher
6222+
memgraph
6223+
mgconsole
6224+
owski

assets/contributors.csv

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,6 @@ Johnny Nunez,NVIDIA,johnnynunez,johnnycano,,
122122
Raymond Lo,NVIDIA,raymondlo84,raymondlo84,,
123123
Kavya Sri Chennoju,Arm,kavya-chennoju,kavya-sri-chennoju,,
124124
Akash Malik,Arm,akashmalik19973,akash-malik-a65bab219,,
125-
Sue Wu,Arm,,,,
125+
Matt Cossins,Arm,matt-cossins,,,
126+
Sue Wu,Arm,,,,
127+
Sabika Tasneem,Memgraph,,,,

assets/css/stats.css

Lines changed: 10 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,17 @@
1-
2-
31
#total-content-num {
4-
width:fit-content;
2+
width: fit-content;
53
font-size: 150px;
64
margin: 0;
75
padding: 0;
86
}
97
@media (min-width: 576px) {
10-
#total-content-num { font-size: 200px; }
8+
#total-content-num { font-size: 200px; }
119
}
1210
@media (min-width: 768px) {
13-
#total-content-num { font-size: 250px; }
14-
}
15-
@media (min-width: 992px) {
16-
#total-content-num { font-size: 250px; }
11+
#total-content-num { font-size: 250px; }
1712
}
1813
@media (min-width: 1200px) {
19-
#total-content-num { font-size: 300px; }
14+
#total-content-num { font-size: 300px; }
2015
}
2116

2217
.total-content-context {
@@ -25,7 +20,7 @@
2520
}
2621

2722
.unique-contributor-num {
28-
width:fit-content;
23+
width: fit-content;
2924
font-size: 100px;
3025
margin: 0;
3126
padding: 0;
@@ -34,33 +29,21 @@
3429
.stats-card:hover {
3530
cursor: default;
3631
}
32+
3733
ads-card.stats-card:hover * {
3834
background: white;
3935
-webkit-background-clip: text;
4036
-webkit-text-fill-color: transparent;
4137
}
4238

43-
4439
.stats-table {
4540
border: 1px solid var(--arm-black);
4641
}
42+
4743
.stats-table td {
4844
background-color: #010101;
4945
}
5046

51-
.stats-table-row-highlight {
52-
background-color: var(--arm-black)!important;
53-
}
54-
55-
56-
57-
.test-status-pass {
58-
color: var(--arm-green);
59-
}
60-
.test-status-fail {
61-
color: #e86868; /* lighter arm red */
62-
}
63-
6447
.stats-dividing-bar {
6548
background-color: var(--arm-dark-grey);
6649
height: 1px;
@@ -71,5 +54,6 @@ ads-card.stats-card:hover * {
7154
color: var(--arm-light-grey);
7255
}
7356

74-
75-
57+
.table-wrapper-for-overflow {
58+
overflow-x: auto;
59+
}

0 commit comments

Comments
 (0)