Update git-tree #16
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 git-tree | |
on: | |
workflow_run: | |
workflows: Update vcpkg port | |
types: completed | |
workflow_dispatch: | |
permissions: write-all | |
concurrency: | |
group: update-git-tree | |
cancel-in-progress: true | |
jobs: | |
update-git-tree: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- run: python update_git_tree.py | |
- name: Add & Commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: "ci: update git-tree" |