Skip to content

Commit 41994d6

Browse files
authored
Update update-readme.yml
1 parent c890f83 commit 41994d6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/update-readme.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77

88
permissions:
9-
contents: write
9+
contents: write # Needed for pushing changes
1010

1111
jobs:
1212
update-readme:
@@ -15,12 +15,18 @@ jobs:
1515
- uses: actions/checkout@v3
1616
with:
1717
token: ${{ secrets.GITHUB_TOKEN }}
18+
1819
- name: Set up Python
1920
uses: actions/setup-python@v4
2021
with:
2122
python-version: "3.x"
23+
2224
- name: Run update script
2325
run: python .github/scripts/update_readme.py
26+
27+
- name: Show updated README (debug)
28+
run: cat README.md
29+
2430
- name: Commit changes
2531
run: |
2632
git config --global user.name "github-actions[bot]"

0 commit comments

Comments
 (0)