Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
create

make directory

make directory
  • Loading branch information
amishas157 committed Nov 4, 2024
1 parent 89aaf08 commit f18a9e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/update_source_data_schema_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
OLD_SCHEMAS_DIR=original_schemas
cp -r schemas/ new_schemas/
git clone --branch master https://github.com/stellar/stellar-etl-airflow.git repo_master_copy
cp -r repo_master_copy/schemas/ OLD_SCHEMAS_DIR
mkdir OLD_SCHEMAS_DIR
cp -r repo_master_copy/schemas/ $OLD_SCHEMAS_DIR/
export OLD_SCHEMAS_DIR
python3 scripts/update_source_data_schema_changelog.py
Expand Down
4 changes: 2 additions & 2 deletions scripts/update_source_data_schema_changelog.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import json
import os
import sys
import json
from datetime import datetime

OLD_SCHEMAS_DIR = os.environ.get(OLD_SCHEMAS_DIR)
OLD_SCHEMAS_DIR = os.environ.get("OLD_SCHEMAS_DIR")
NEW_SCHEMAS_DIR = "schemas"
CHANGELOG_FILEPATH = "changelog/source_data.md"

Expand Down

0 comments on commit f18a9e6

Please sign in to comment.