Last week, I deployed an instance of Pontoon to Heroku for an open source project I work on in my spare time. It was syncing fine for a few days, but it has stopped. I currently have some capitalization changes in a couple of fluent string attributes that have been approved, but when I sync, the log tells me that the project is skipped and no new commits are added to the configured branch:
Syncing project erasmus.
[2022-08-22 18:20:20,570: INFO/ForkPoolWorker-8] Syncing project erasmus.
Pulling source changes for project erasmus started.
[2022-08-22 18:20:20,571: INFO/ForkPoolWorker-8] Pulling source changes for project erasmus started.
Pulling source changes for project erasmus complete.
[2022-08-22 18:20:20,858: INFO/ForkPoolWorker-8] Pulling source changes for project erasmus complete.
Skipping syncing sources for project erasmus, no changes detected.
[2022-08-22 18:20:20,862: INFO/ForkPoolWorker-8] Skipping syncing sources for project erasmus, no changes detected.
Syncing translations for project: erasmus
[2022-08-22 18:20:20,867: INFO/ForkPoolWorker-8] Syncing translations for project: erasmus
Retrieving changed files for: /app/media/projects/erasmus/git@github.com:bryanforbes/Erasmus.git:651cc7194584c7c278ef4521c129dc7676298430
[2022-08-22 18:20:20,887: INFO/ForkPoolWorker-8] Retrieving changed files for: /app/media/projects/erasmus/git@github.com:bryanforbes/Erasmus.git:651cc7194584c7c278ef4521c129dc7676298430
Changed files in Erasmus repository, all: []
[2022-08-22 18:20:20,903: INFO/ForkPoolWorker-8] Changed files in Erasmus repository, all: []
Changed files in Erasmus repository, relevant for enabled locales: {}
[2022-08-22 18:20:20,909: INFO/ForkPoolWorker-8] Changed files in Erasmus repository, relevant for enabled locales: {}
Changed files in Erasmus repository and Pontoon, relevant for enabled locales: {'erasmus.ftl': {<Locale: Norwegian BokmĂĄl>}}
[2022-08-22 18:20:20,916: INFO/ForkPoolWorker-8] Changed files in Erasmus repository and Pontoon, relevant for enabled locales: {'erasmus.ftl': {<Locale: Norwegian BokmĂĄl>}}
Relative paths in Erasmus that need to be synced: dict_keys([])
[2022-08-22 18:20:21,025: INFO/ForkPoolWorker-8] Relative paths in Erasmus that need to be synced: dict_keys([])
Skipping syncing translations for project erasmus, none of the locales has anything to sync.
[2022-08-22 18:20:21,027: INFO/ForkPoolWorker-8] Skipping syncing translations for project erasmus, none of the locales has anything to sync.
Sync complete.
[2022-08-22 18:20:21,061: INFO/ForkPoolWorker-8] Sync complete.
My folder structure looks like this:
erasmus/l10n/
|_ en-US/
|_ erasmus.ftl
|_ nb-NO/
|_ erasmus.ftl
And my project settings:
The repo can be found here: https://github.com/bryanforbes/Erasmus
Let me know if any other information is needed.