Skip to content

Use Sphinx mermaid plugin quirky syntax #2325

Use Sphinx mermaid plugin quirky syntax

Use Sphinx mermaid plugin quirky syntax #2325

Workflow file for this run

---
name: Labels
"on":
push:
branches:
- main
# XXX Concurrency detection sucks and jobs gets killed randonmly.
# concurrency:
# # Group workflow jobs so new commits cancels in-progress execution triggered by previous commits.
# # Source: https://mail.python.org/archives/list/pypa-committers@python.org/thread/PCBCQMJF64JGRBOX7E2EE4YLKHT4DI55/
# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
# cancel-in-progress: true
jobs:
generate-labels:
name: Generate extra labels
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4.2.0
- uses: actions/setup-python@v5.2.0
with:
python-version: "3.12"
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.6.0/requirements/uv.txt
- name: Install project
run: |
uv --no-progress venv
uv --no-progress sync --all-extras
- name: Generate labels
run: >
uv --no-progress run --frozen --
python -c 'from meta_package_manager.labels import write_labels; write_labels()'
- uses: peter-evans/create-pull-request@v7.0.5
with:
assignees: ${{ github.actor }}
commit-message: "[github] Update extra labels."
title: "[github] Update extra labels"
body: >
<details><summary><code>Workflow metadata</code></summary>
> [Auto-generated on run `#${{ github.run_id }}`](${{ github.event.repository.html_url }}/actions/runs/${{
github.run_id }}) by `${{ github.job }}` job from [`labels.yaml`](${{ github.event.repository.html_url
}}/blob/${{ github.sha }}/.github/workflows/labels.yaml) workflow.
</details>
labels: "πŸ€– ci"
branch: update-labels
add-paths: |
.github/labels-extra.json
labels:
uses: kdeldycke/workflows/.github/workflows/labels.yaml@v4.6.0
needs: generate-labels
with:
extra-label-files: |
.github/labels-extra.json