Skip to content

papers added, need to finish the experiment and then finish iterating… #192

papers added, need to finish the experiment and then finish iterating…

papers added, need to finish the experiment and then finish iterating… #192

name: Update map.yaml
on:
push:
paths:
- '**'
workflow_dispatch:
jobs:
update-map-yaml:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: pip install pyyaml
- name: Run generate_path.py
run: python tools/generate_path.py
- name: Create Pull Request for map.yaml update
uses: peter-evans/create-pull-request@v6
with:
commit-message: "Auto-update map.yaml"
title: "Auto-update map.yaml"
body: "This PR was automatically generated by a GitHub Action to update map.yaml."
branch: auto/update-map-yaml
add-paths: map.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}