Skip to content

Beet rework

Beet rework #9

Workflow file for this run

name: 🏷️ Update Metadata
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
update:
name: ⚙️ Generate Metadata
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- uses: fregante/setup-git-user@v2
- uses: pdm-project/setup-pdm@v4
with:
cache: true
- name: Generate Metadata
run: |
pdm install
pdm run meta update
- name: Push Changes
run: git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}