Update index - Feb 2024 #283
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: Index Generation | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
types: [closed] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.7" | |
- name: Generate Index | |
run: | | |
python code/generate_index.py | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
commit-message: Generate Index | |
author: GitHub Action <action@github.com> | |
committer: GitHub Action <action@github.com> | |
signoff: true | |
branch: index-generator | |
title: "[AUTO] Update Index" | |
body: | | |
Update Index |