From 0d6fa51a1189a7bdb1927e7987c7a74216d13ab2 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 22 Oct 2020 16:21:25 -0500 Subject: [PATCH] CI: Fixed name for example pipeline --- recipes/example/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/example/pipeline.py b/recipes/example/pipeline.py index 60e7b485d3..5a620c4bd7 100644 --- a/recipes/example/pipeline.py +++ b/recipes/example/pipeline.py @@ -37,7 +37,7 @@ def source_url(day: str) -> str: class Pipeline(pangeo_forge.AbstractPipeline): # You must define a few pieces of metadata in your pipeline. # name is the pipeline name, typically the name of the dataset. - name = "name" + name = "example" # repo is the URL of the GitHub repository this will be stored at. repo = "pangeo-forge/example-pipeline"