Bump autofix-ci/action from dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a to ff86a557419858bb967097bfc916833f5647fa8c in the actions group #2590
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: autofix.ci | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: [opened, synchronize, labeled, unlabeled] | |
permissions: | |
contents: read | |
jobs: | |
autofix: | |
name: Autoupdate changelog entry and headers | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- run: pip install --upgrade towncrier pygithub gitpython numpy | |
- run: python ./.github/actions/rename_towncrier/rename_towncrier.py | |
- run: python ./tools/dev/ensure_headers.py | |
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c |