From e5d9324c7a1d3b929cd4ee8ee85a15c23f6fdaa6 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Thu, 30 Oct 2025 09:23:38 -0400 Subject: [PATCH 1/3] feat(docs): add mention of the new --skip-run flag --- docs/content/docs/changelog/0.3.1.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/content/docs/changelog/0.3.1.mdx b/docs/content/docs/changelog/0.3.1.mdx index ab4a70a..536bde0 100644 --- a/docs/content/docs/changelog/0.3.1.mdx +++ b/docs/content/docs/changelog/0.3.1.mdx @@ -31,3 +31,7 @@ To ensure users using VirtualBox see the full command for adding a user to the s ## GitHub Action to verify CKAN install runs We've added a GitHub Action to run on push to the main branch to verify that a CKAN-only install runs. This doesn't include verbose testing but rather ensuring that the ckan-devstaller finishes without errors. + +## New --skip-run flag + +We've added a `--skip-run` flag to skip running CKAN at the end of installation. From 6c173fb779bc48f1b92800e2f6093b43f134c4b5 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Thu, 30 Oct 2025 09:29:00 -0400 Subject: [PATCH 2/3] ci: ignore docs path for running workflow --- .github/workflows/run-ckan-only-install.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run-ckan-only-install.yml b/.github/workflows/run-ckan-only-install.yml index 5d525c1..655e11f 100644 --- a/.github/workflows/run-ckan-only-install.yml +++ b/.github/workflows/run-ckan-only-install.yml @@ -3,6 +3,8 @@ on: push: branches: - main + paths-ignore: + - 'docs/**' workflow_dispatch: jobs: ckanonlyinstall: From f0ac63a368c40f99807710dbed91ff5a7ed26a19 Mon Sep 17 00:00:00 2001 From: rzmk <30333942+rzmk@users.noreply.github.com> Date: Fri, 31 Oct 2025 14:28:22 -0400 Subject: [PATCH 3/3] docs: add ckanaction to Next Steps in README and ignore README for CI --- .github/workflows/run-ckan-only-install.yml | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/run-ckan-only-install.yml b/.github/workflows/run-ckan-only-install.yml index 655e11f..68ea266 100644 --- a/.github/workflows/run-ckan-only-install.yml +++ b/.github/workflows/run-ckan-only-install.yml @@ -5,6 +5,7 @@ on: - main paths-ignore: - 'docs/**' + - 'README.md' workflow_dispatch: jobs: ckanonlyinstall: diff --git a/README.md b/README.md index 4d0c8a9..762f607 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ You may find the following guides useful while developing with CKAN: - [Customize your config file](https://docs.ckan.org/en/latest/extensions/index.html) - [Create test data](https://docs.ckan.org/en/latest/maintaining/getting-started.html#creating-test-data) - [Visit ckan.org](https://ckan.org) +- [Interact with your CKAN API at ckanaction.dathere.com](https://ckanaction.dathere.com) ## `ckan-devstaller` demos