Can we disable git LFS for Codex containers to avoid unnecessary GitHub costs?

I have a silly issue but it’s getting expensive.
From what I can best tell, the git repo downloads before the setup script runs.
It seems to be using LFS to download gigs of data each run and this is costing money when the agent has no need to touch any of the binary data in my case.

Any chance we can make LFS an optional tool? or is there a way to outright disable it when a container spins up?

We are experiencing the same issue. No need to download any LFS files. Codex unfortunately is kind of unusable for us now because the LFS bandwidth is quickly driving up the the costs.
We’ve tried several methods like:

git config --global filter.lfs.process "git-lfs filter-process --skip"
git config --global filter.lfs.smudge "git-lfs smudge -- skip -- %f"
GIT_LFS_SKIP_SMUDGE=1 git

But these don’t seem to work. If i create a simple task, we see the LFS usage on github increase, quickly eating up our bandwidth. Please provide a way to disable LFS in a workspace. Thanks.