-
Notifications
You must be signed in to change notification settings - Fork 805
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' into refactor/social-register-feature-settings
- Loading branch information
Showing
259 changed files
with
3,968 additions
and
1,111 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 |
---|---|---|
|
@@ -70,6 +70,7 @@ jobs: | |
export GIT_COMMITTER_NAME=matticbot | ||
export [email protected] | ||
EXIT=0 | ||
echo "Creating tags..." | ||
TOPUSH=() | ||
for T in "${TAGS[@]}"; do | ||
|
@@ -79,8 +80,22 @@ jobs: | |
done | ||
if [[ ${#TOPUSH[@]} -gt 0 ]]; then | ||
echo "Pushing tags..." | ||
git push origin "${TOPUSH[@]}" | ||
echo "::notice::Created tags: ${TOPUSH[*]}" | ||
# GitHub has a limit on the number of tags that can be updated in a single push. So do them in batches. | ||
DONE=() | ||
while [[ ${#TOPUSH[@]} -gt 0 ]]; do | ||
BATCH=( "${TOPUSH[@]:0:5}" ) | ||
if git push origin "${BATCH[@]}"; then | ||
DONE+=( "${BATCH[@]}" ) | ||
else | ||
echo "::error::Failed to create tags: ${BATCH[*]}" | ||
EXIT=1 | ||
fi | ||
TOPUSH=( "${TOPUSH[@]:5}" ) | ||
done | ||
if [[ ${#DONE[@]} -gt 0 ]]; then | ||
echo "::notice::Created tags: ${DONE[*]}" | ||
fi | ||
else | ||
echo "::notice::No tags needed creation." | ||
fi | ||
exit $EXIT |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
4 changes: 4 additions & 0 deletions
4
projects/github-actions/repo-gardening/changelog/fix-gather-issue-references-pr
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,4 @@ | ||
Significance: patch | ||
Type: fixed | ||
|
||
Issue references: do not gather support references in Pull Requests, only in issues. |
4 changes: 4 additions & 0 deletions
4
projects/github-actions/repo-gardening/changelog/fix-gather-issue-references-pr#2
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,4 @@ | ||
Significance: patch | ||
Type: fixed | ||
|
||
Issue references: avoid changing capitalization of p2 shortlinks. |
4 changes: 4 additions & 0 deletions
4
projects/github-actions/repo-gardening/changelog/fix-update-board-trigger-reference
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,4 @@ | ||
Significance: patch | ||
Type: fixed | ||
|
||
Automated Board triage: fix event reference to trigger the action. |
4 changes: 4 additions & 0 deletions
4
projects/github-actions/repo-gardening/changelog/update-repo-gardening-update-board-team
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,4 @@ | ||
Significance: minor | ||
Type: added | ||
|
||
Project Board triage: automatically assign teams to an issue based on issue labels. |
5 changes: 5 additions & 0 deletions
5
projects/github-actions/repo-gardening/changelog/update-support-reference-matches
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,5 @@ | ||
Significance: patch | ||
Type: changed | ||
Comment: Issue references triage: update matching for p2 comments | ||
|
||
|
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
2 changes: 1 addition & 1 deletion
2
projects/github-actions/repo-gardening/src/tasks/clean-labels/index.js
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
Oops, something went wrong.