-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2024-11-06 Custom DC stable release (#4710)
Highlights: - Pins the version of `transformers` in nl_requirements.txt - Adds support for a schema update mode in the data management container, documented [here](https://docs.datacommons.org/custom_dc/troubleshooting.html#schema-check-failed). Schema check errors should also now have a direct link to the troubleshooting page. - Updates services container to exit as soon as any of the mixer, NL, or website servers fails to start up
- Loading branch information
Showing
101 changed files
with
3,037 additions
and
1,190 deletions.
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: all-commits-in-master | ||
|
||
on: | ||
pull_request: | ||
branches: [ "customdc_stable" ] | ||
|
||
jobs: | ||
check_commits: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
# Fetch all history for accurate comparison | ||
fetch-depth: 0 | ||
# Check out the PR branch | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
|
||
- name: Check if commits exist in master | ||
run: | | ||
git remote add dc https://github.com/datacommonsorg/website.git | ||
git fetch dc | ||
MASTER_BRANCH="dc/master" | ||
# Get the list of commits in the source branch that are not in the master branch | ||
MISSING_COMMITS=$(git log --pretty="%H - %s" $MASTER_BRANCH..HEAD --) | ||
if [[ -n "$MISSING_COMMITS" ]]; then | ||
echo "ERROR: The following commits are not present in $MASTER_BRANCH:" | ||
echo "$MISSING_COMMITS" | ||
exit 1 | ||
fi | ||
echo "All commits are present in $MASTER_BRANCH" |
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
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
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
Submodule import
updated
52 files
Submodule mixer
updated
94 files
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
Oops, something went wrong.