We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c890f83 commit 41994d6Copy full SHA for 41994d6
.github/workflows/update-readme.yml
@@ -6,7 +6,7 @@ on:
6
- main
7
8
permissions:
9
- contents: write
+ contents: write # Needed for pushing changes
10
11
jobs:
12
update-readme:
@@ -15,12 +15,18 @@ jobs:
15
- uses: actions/checkout@v3
16
with:
17
token: ${{ secrets.GITHUB_TOKEN }}
18
+
19
- name: Set up Python
20
uses: actions/setup-python@v4
21
22
python-version: "3.x"
23
24
- name: Run update script
25
run: python .github/scripts/update_readme.py
26
27
+ - name: Show updated README (debug)
28
+ run: cat README.md
29
30
- name: Commit changes
31
run: |
32
git config --global user.name "github-actions[bot]"
0 commit comments