-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into changelog-2023-12-04
- Loading branch information
Showing
5,076 changed files
with
752,050 additions
and
31,107 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ on: | |
push: | ||
paths: | ||
- '**-foreign-keys.yml' | ||
branches: | ||
- '!master' | ||
branches-ignore: | ||
- 'master' | ||
|
||
jobs: | ||
generate-foreign-keys: | ||
|
@@ -23,6 +23,7 @@ jobs: | |
with: | ||
packages: | | ||
pyyaml | ||
pandas | ||
- name: Generate foreign keys | ||
run: python generate_foreign_keys.py | ||
|
@@ -38,5 +39,5 @@ jobs: | |
git add -A | ||
git config --global user.email "[email protected]" | ||
git config --global user.name 'github-actions' | ||
git commit -am "Automated commit: Generate JSON schemas" | ||
git commit -am "Automated commit: Generate foreign keys" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ on: | |
required: false | ||
|
||
jobs: | ||
generate-changelog: | ||
import-schemas: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get current date | ||
|
@@ -28,7 +28,7 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
git fetch | ||
git checkout TDL-23186-json-schema | ||
git checkout master | ||
git branch ${{ env.branch }} | ||
- name: Checkout branch | ||
|
@@ -47,6 +47,7 @@ jobs: | |
with: | ||
packages: | | ||
requests | ||
pyyaml | ||
- name: Get JSON files | ||
run: python get_json_files.py ${{ secrets.GITHUB_TOKEN }} ${{ github.event.inputs.repo }} ${{ github.event.inputs.branch }} | ||
|
@@ -62,7 +63,7 @@ jobs: | |
git add -A | ||
git config --global user.email "[email protected]" | ||
git config --global user.name 'github-actions' | ||
git commit -am "Automated commit: Add JSON schemas" | ||
git commit -am "Automated commit: Import JSON schemas" | ||
- name: Push changes | ||
if: steps.get_changes.outputs.changed != 0 | ||
|
@@ -76,7 +77,7 @@ jobs: | |
uses: repo-sync/pull-request@v2 | ||
with: | ||
source_branch: ${{ env.branch }} | ||
destination_branch: "master" | ||
destination_branch: "TDL-23186-json-schema" | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
pr_label: "json-schemas-update" | ||
pr_title: ${{ github.event.inputs.repo }} JSON schema updates ${{ env.date }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,5 @@ Thumbs.db | |
*~ | ||
*.scssc | ||
.cache_ggshield | ||
__pycache__ | ||
*.pyc |
Oops, something went wrong.