Manifest #204
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: "Manifest" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
metadata: | |
name: "Manifest libraries update" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout the repository" | |
uses: "actions/[email protected]" | |
- name: "Set up Python" | |
uses: actions/[email protected] | |
with: | |
python-version: "3.13" | |
cache: "pip" | |
- name: "Update manifest file" | |
shell: "bash" | |
run: scripts/update_manifest.py | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
branch: create-pull-request/manifest | |
title: Manifest libraries update | |
body: Automated changes by "Manifest" GitHub action | |
commit-message: Manifest update |