Skip to content

Merge pull request #73 from robust-python/release/2025.12.1 #29

Merge pull request #73 from robust-python/release/2025.12.1

Merge pull request #73 from robust-python/release/2025.12.1 #29

name: merge-demo-feature.yml
on:
push:
branches:
- develop
env:
COOKIECUTTER_ROBUST_PYTHON__DEMOS_CACHE_FOLDER: ${{ github.workspace }}
COOKIECUTTER_ROBUST_PYTHON__APP_AUTHOR: ${{ github.repository_owner }}
ROBUST_PYTHON_DEMO__APP_AUTHOR: ${{ github.repository_owner }}
ROBUST_MATURIN_DEMO__APP_AUTHOR: ${{ github.repository_owner }}
jobs:
update-demo:
name: Update Demo
uses: ./.github/workflows/update-demo.yml

Check failure on line 16 in .github/workflows/merge-demo-feature.yml

View workflow run for this annotation

GitHub Actions / merge-demo-feature.yml

Invalid workflow file

The workflow is not valid. .github/workflows/merge-demo-feature.yml (Line: 16, Col: 11): Secret DEMO_TOKEN is required, but not provided while calling.
strategy:
matrix:
demo_name:
- "robust-python-demo"
- "robust-maturin-demo"
with:
demo_name: ${{ matrix.demo_name }}
branch: ${{ github.ref_name }}
merge-demo-feature:
name: Merge Demo Feature
runs-on: ubuntu-latest
strategy:
matrix:
demo_name:
- "robust-python-demo"
- "robust-maturin-demo"
env:
GH_TOKEN: ${{ secrets.DEMO_TOKEN }}
steps:
- name: Checkout Template
uses: actions/checkout@v4
with:
repository: "${{ github.repository_owner }}/cookiecutter-robust-python"
- name: Checkout Demo
uses: actions/checkout@v4
with:
repository: "${{ github.repository_owner }}/${{ inputs.demo_name }}"
path: ${{ inputs.demo_name }}
ref: develop
token: ${{ secrets.DEMO_TOKEN }}
- name: Set up uv
uses: astral-sh/setup-uv@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "${{ github.workspace }}/cookiecutter-robust-python/.github/workflows/.python-version"
- name: Merge Demo Feature PR into Develop
working-directory: "${{ github.workspace }}/${{ matrix.demo_name }}"
run: "uvx nox -s merge-demo-feature(${{ matrix.demo_name }}) -- ${{ github.head_ref }}"