From 76bc19f83103a275a00a8b3e767718079733197d Mon Sep 17 00:00:00 2001 From: "Ryan M. Richard" Date: Fri, 7 Aug 2026 11:57:44 -0500 Subject: [PATCH] Fix invalid YAML in merge.yaml: dangling empty 'with:' block extra_index_url was the only key under build_pypi_dist's 'with:', so deleting it during the TestPyPI cleanup left an empty mapping value, which GitHub Actions can't parse -- the whole workflow failed to run at all (zero jobs) on the first post-merge push. --- .github/workflows/merge.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 20437ef..ab773d2 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -43,7 +43,6 @@ jobs: steps: - name: Build PyPI Distribution uses: NWChemEx/.github/.github/actions/build_pypi_dist@master - with: - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1