Skip to content

Commit adf0903

Browse files
authored
Merge branch 'ArmDeveloperEcosystem:main' into main
2 parents 6b4a689 + 5ae3c5e commit adf0903

Some content is hidden

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

62 files changed

+342
-475
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Generate Monthly Learning Path Report
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
generate-report:
8+
runs-on: ubuntu-24.04-arm
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Set up Python
14+
uses: actions/setup-python@v5
15+
with:
16+
python-version: '3.12'
17+
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -r tools/requirements.txt
22+
23+
- name: Generate monthly report
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
PAT: ${{ secrets.PAT }}
27+
run: |
28+
python tools/generate_monthly_report.py
29+
30+
- name: Commit and push report to repository
31+
run: |
32+
git config user.name github-actions
33+
git config user.email [email protected]
34+
git add reports/
35+
git commit -m "Add monthly learning path report [skip ci]" || echo "No changes to commit"
36+
git push
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/update-roadmap-project-dates.yml

Lines changed: 0 additions & 191 deletions
This file was deleted.

0 commit comments

Comments
 (0)