From 0ad9a1acb370c90927725f52dfd082dc51b4e886 Mon Sep 17 00:00:00 2001 From: Maurits van Rees Date: Tue, 5 May 2026 11:06:47 +0200 Subject: [PATCH] Update meta workflow: add circular, remove test (replaced with test-matrix). See failed run: https://github.com/plone/plone.app.testing/actions/runs/25344806259 ``` error parsing called workflow ".github/workflows/meta.yml" -> "plone/meta/.github/workflows/test.yml@2.x" : failed to fetch workflow: workflow was not found. ``` --- .github/workflows/meta.yml | 4 ++-- .meta.toml | 11 +---------- news/+17f3d09f.tests.rst | 1 + 3 files changed, 4 insertions(+), 12 deletions(-) create mode 100644 news/+17f3d09f.tests.rst diff --git a/.github/workflows/meta.yml b/.github/workflows/meta.yml index 0e0f836..df9c753 100644 --- a/.github/workflows/meta.yml +++ b/.github/workflows/meta.yml @@ -20,14 +20,14 @@ on: jobs: qa: uses: plone/meta/.github/workflows/qa.yml@2.x - test: - uses: plone/meta/.github/workflows/test.yml@2.x coverage: uses: plone/meta/.github/workflows/coverage.yml@2.x dependencies: uses: plone/meta/.github/workflows/dependencies.yml@2.x release_ready: uses: plone/meta/.github/workflows/release_ready.yml@2.x + circular: + uses: plone/meta/.github/workflows/circular.yml@2.x ## # To modify the list of default jobs being created add in .meta.toml: diff --git a/.meta.toml b/.meta.toml index bca5bb3..ba5e714 100644 --- a/.meta.toml +++ b/.meta.toml @@ -3,7 +3,7 @@ # See the inline comments on how to expand/tweak this configuration file [meta] template = "default" -commit-id = "2.8.0" +commit-id = "2.8.1.dev0" [tox] test_matrix = {"6.2" = ["*"]} @@ -16,12 +16,3 @@ per-file-ignores = [pyproject] dependencies_ignores = "['decorator', 'robotframework-selenium2library', 'robotsuite', 'selenium']" - -[github] -jobs = [ - "qa", - "test", - "coverage", - "dependencies", - "release_ready", - ] diff --git a/news/+17f3d09f.tests.rst b/news/+17f3d09f.tests.rst new file mode 100644 index 0000000..f372765 --- /dev/null +++ b/news/+17f3d09f.tests.rst @@ -0,0 +1 @@ +Update meta workflow: add ``circular``, remove ``test`` (replaced with test-matrix). [maurits]