-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sync-translated-content): gather releated upstream commits
- Loading branch information
Showing
1 changed file
with
19 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -59,6 +59,24 @@ jobs: | |
working-directory: ${{ github.workspace }}/mdn/content | ||
run: yarn content sync-translated-content ${{ matrix.lang }} | ||
|
||
- name: Gather related upstream commits | ||
run: | | ||
# get original path of moved files | ||
MOVED_FILES=$(git diff --cached --name-status --diff-filter=R | cut -f2) | ||
FILE_COMMIT_URLS="" | ||
while read -r MOVED_FILE; do | ||
# gather related upstream commits | ||
COMMIT_URL=$(gh api -XGET repos/mdn/content/commits -F path="${MOVED_FILE}" -F per_page=1 --jq '.[0].html_url') | ||
# check if the commit url is not empty and not in the list | ||
if [ -n "${COMMIT_URL}" ] && [[ "${FILE_COMMIT_URLS}" != *"${COMMIT_URL}"* ]]; then | ||
FILE_COMMIT_URLS="${FILE_COMMIT_URLS}- ${COMMIT_URL}\n" | ||
fi | ||
done <<< "$MOVED_FILES" | ||
DELIMITER="$(openssl rand -hex 10)" | ||
echo "commit_urls<<${DELIMITER}" >> $GITHUB_ENV | ||
echo "${FILE_COMMIT_URLS}" >> $GITHUB_ENV | ||
echo "${DELIMITER}" >> $GITHUB_ENV | ||
- name: Create PR with sync for ${{ matrix.lang }} | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
|
@@ -67,7 +85,7 @@ jobs: | |
title: "[${{ matrix.lang }}] sync translated content" | ||
author: mdn-bot <[email protected]> | ||
committer: mdn-bot <[email protected]> | ||
body: Yari generated sync | ||
body: "Yari generated sync. Related upstream commits:\n\n${{ env.commit_urls }}" | ||
labels: | | ||
automated pr | ||
token: ${{ secrets.AUTOMERGE_TOKEN }} |