-
-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into typing_charts
- Loading branch information
Showing
4,066 changed files
with
174,901 additions
and
204,329 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/sh | ||
# Merge open PRs from sagemath/sage labeled "blocker". | ||
REPO="sagemath/sage" | ||
GH="gh -R $REPO" | ||
PRs="$($GH pr list --label "p: blocker / 1" --json number --jq '.[].number')" | ||
if [ -z "$PRs" ]; then | ||
echo 'Nothing to do: Found no open PRs with "blocker" status.' | ||
else | ||
echo "Found PRs: " $PRs | ||
export GIT_AUTHOR_NAME="ci-sage workflow" | ||
export GIT_AUTHOR_EMAIL="ci-sage@example.com" | ||
export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME" | ||
export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL" | ||
git tag -f test_base | ||
git commit -q -m "Uncommitted changes" --no-allow-empty -a | ||
for a in $PRs; do | ||
echo "::group::Merging PR https://github.com/$REPO/pull/$a" | ||
git tag -f test_head | ||
$GH pr checkout -b pr-$a $a | ||
git fetch --unshallow --all | ||
git checkout -q test_head | ||
if git merge --no-edit --squash -q pr-$a; then | ||
echo "::endgroup::" | ||
if git commit -q -m "Merge https://github.com/$REPO/pull/$a" -a --no-allow-empty; then | ||
echo "Merged #$a" | ||
else | ||
echo "Empty, skipped" | ||
fi | ||
else | ||
echo "::endgroup::" | ||
echo "Failure merging #$a, resetting" | ||
git reset --hard | ||
fi | ||
done | ||
git log test_base..HEAD | ||
fi |
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,19 @@ | ||
# https://docs.codecov.com/docs/pull-request-comments#disable-comment | ||
comment: false | ||
# https://docs.codecov.com/docs/codecovyml-reference#codecov | ||
codecov: | ||
require_ci_to_pass: false | ||
# https://docs.codecov.com/docs/commit-status | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 0% | ||
base: auto | ||
informational: true | ||
patch: | ||
default: | ||
target: auto | ||
threshold: 0% | ||
base: auto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
Oops, something went wrong.