finally working #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Update readme count' | |
permissions: | |
contents: write # Permission to create commits | |
checks: write # Permission to trigger checks | |
on: | |
pull_request: | |
paths: | |
- 'arrays.py' | |
jobs: | |
update-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
cp config.example.py config.py | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Get combination count | |
id: get-count | |
run: echo "count=$(python gen.py -c)" >> $GITHUB_OUTPUT | |
- name: Update readme | |
run: | |
python update_readme_count.py "${{ steps.get-count.outputs.count }}" | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: 'Add updated count to readme' |