-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix quoting error in workflow file #465
Conversation
@@ -6,7 +6,7 @@ on: | |||
inputs: | |||
datasets: | |||
description: 'Comma-separated list of datasets to archive (e.g., "ferc2","ferc6").' | |||
default: '"eia176","eia191","eia757a","eia860","eia860m","eia861","eia923","eia930","eiaaeo","eiawater","eia_bulk_elec","epacamd_eia","epacems",ferc1","ferc2","ferc6","ferc60","ferc714","mshamines","nrelatb","phmsagas","vcerare"' | |||
default: '"eia176","eia191","eia757a","eia860","eia860m","eia861","eia923","eia930","eiaaeo","eiawater","eia_bulk_elec","epacamd_eia","epacems","ferc1","ferc2","ferc6","ferc60","ferc714","mshamines","nrelatb","phmsagas","vcerare"' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure how I did it, but this one character error was my fault. Introduced when I switched us off the bigger paid runner.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And it doesn't get caught by the action linter because it's an error in our little JSON blob.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ugh. Slipped past both of us. Well, at least you caught it now!
@@ -6,7 +6,7 @@ on: | |||
inputs: | |||
datasets: | |||
description: 'Comma-separated list of datasets to archive (e.g., "ferc2","ferc6").' | |||
default: '"eia176","eia191","eia757a","eia860","eia860m","eia861","eia923","eia930","eiaaeo","eiawater","eia_bulk_elec","epacamd_eia","epacems",ferc1","ferc2","ferc6","ferc60","ferc714","mshamines","nrelatb","phmsagas","vcerare"' | |||
default: '"eia176","eia191","eia757a","eia860","eia860m","eia861","eia923","eia930","eiaaeo","eiawater","eia_bulk_elec","epacamd_eia","epacems","ferc1","ferc2","ferc6","ferc60","ferc714","mshamines","nrelatb","phmsagas","vcerare"' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ugh. Slipped past both of us. Well, at least you caught it now!
Overview
There was a syntax error in the JSON that we feed into the monthly archive script as a matrix and so it failed to run November 1st. This PR literally adds a single character to that JSON blob to double-quote
"ferc1"
.Testing
I've kicked off a
workflow_dispatch
run manually it seems to be running as expected.