diff --git a/.github/workflows/on_main_commit.yml b/.github/workflows/on_main_commit.yml index 65812d9..2a36375 100644 --- a/.github/workflows/on_main_commit.yml +++ b/.github/workflows/on_main_commit.yml @@ -10,4 +10,5 @@ jobs: steps: - name: TODO to Issue uses: alstr/todo-to-issue-action@v4.13.1 - + with: + CLOSE_ISSUES: true diff --git a/pete/src/main.rs b/pete/src/main.rs index 8606a43..9ad042b 100644 --- a/pete/src/main.rs +++ b/pete/src/main.rs @@ -238,6 +238,9 @@ fn compile( for item in build_plan.items { let (lockfile, buf, _build_plan) = load_project_and_dependencies(&item.path_to_source)?; // TODO(alex) -- transitive dependencies, get these build plans too + // assignee: sezna + + // TODO fix issue creator let lockfile_toml = toml::to_string(&lockfile)?; let lockfile_path = path.join("petr.lock"); fs::write(lockfile_path, lockfile_toml)?;