Skip to content

Commit

Permalink
fix: temporary disable data from rhin-occ, res-in and ultra-num
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-gavanier committed Sep 12, 2024
1 parent f928247 commit 67450cf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 18 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/nightly-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
fibre-64,
france-services,
francil-in,
# france-tiers-lieux,
gironde,
haute-vienne,
hinaura,
Expand All @@ -40,10 +39,7 @@ jobs:
les-landes,
paca,
loire-atlantique,
rhin-occ,
res-in,
sarthe,
ultra-num,
nouvelle-caledonie
]
runs-on: ubuntu-latest
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
fibre-64,
france-services,
francil-in,
# france-tiers-lieux,
gironde,
haute-vienne,
hinaura,
Expand All @@ -45,10 +44,7 @@ jobs:
les-landes,
paca,
loire-atlantique,
rhin-occ,
res-in,
sarthe,
ultra-num,
nouvelle-caledonie
]
runs-on: ubuntu-latest
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ jobs:
fibre-64,
france-services,
francil-in,
# france-tiers-lieux,
gironde,
haute-vienne,
hinaura,
Expand All @@ -78,10 +77,7 @@ jobs:
les-landes,
paca,
loire-atlantique,
rhin-occ,
res-in,
sarthe,
ultra-num,
nouvelle-caledonie
]
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ L'interface vous pose un ensemble de questions afin de recevoir les paramètres
- Dans le champ `Couverture spatiale`, entrez en entier le territoire que vous voulez par exemple `Métropole de Lyon`
- Plusieurs requêtes sont envoyées au fur et à mesure que vous tapez
- Observer la réponse au fromat json : c'est le champ id qui correspond à la valeur attendue par data.gouv.fr, ne gardez que la partie avant `@`
- Par exemple pour `Métropole de Lyon`, il y a le champ `id "fr:epci:200046977@2015-01-01"`, la valeur à récupérer est : `fr:epci:200046977`
- Par exemple pour `Métropole de Lyon`, il y a le champ `id "fr:epci:200046977@2015-01-01"`, la valeur à récupérer est : `fr:epci:200046977`

#### Options disponibles pour la commande publier

Expand Down
8 changes: 4 additions & 4 deletions src/transformer/cli/action/transformer.action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ export const transformerAction = async (transformerOptions: TransformerOptions):
);
const sourceHash: string = createHash('sha256').update(source).digest('hex');

// if (previousSourceHash === sourceHash) {
// console.log("2. Il n'y a pas de différence par rapport à la transformation précédente");
// return;
// }
if (previousSourceHash === sourceHash) {
console.log("2. Il n'y a pas de différence par rapport à la transformation précédente");
return;
}

const sourceItems: DataSource[] = JSON.parse(replaceNullWithEmptyString(source)).slice(0, maxTransform);

Expand Down
2 changes: 1 addition & 1 deletion src/transformer/fields/contact/clean-operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const fixWebsitesSeparator = (field: string): CleanOperation => ({
name: 'websites separator',
selector: /;|\s(?:ou|\/|;)\s/u,
field,
fix: (toFix: string): string => toFix.replace(/;|\s(?:ou|\/|;)\s/, '|')
fix: (toFix: string): string => toFix.replace(/;|\s(?:ou|\/|;)\s/u, '|')
});

const fixWebsitesWithComaInsteadOfDot = (field: string): CleanOperation => ({
Expand Down

0 comments on commit 67450cf

Please sign in to comment.