usdigitalresponse / grants-ingest

Ingests and indexes data related to grants
Apache License 2.0
7 stars 2 forks source link

Fix: missing taskfile source #917

Closed TylerHendrickson closed 1 month ago

TylerHendrickson commented 1 month ago

Relates to #894

Description

This PR fixes a build automation failure introduced in #894. That PR added a new Taskfile (.taskfiles/local.yml), which isn't bundled as a build source in .github/workflows/build.yml. Since it isn't available in build environments, the task command fails because it cannot locate the file. To fix this, there are two options:

  1. Update the CI/CD build workflow to include .taskfiles/local.yml in build environments.
  2. Update Taskfile.yml so that .taskfiles/local.yml is marked as an optional include so that task won't fail when the included file is unavailable.

Since nothing in .taskfiles/local.yml is strictly necessary outside of local development usage, this PR implements the second option.