Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(sync-translated-content): gather releated upstream commits #18427

Merged
merged 4 commits into from
Mar 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion .github/workflows/sync-translated-content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,36 @@ jobs:
working-directory: ${{ github.workspace }}/mdn/content
run: yarn content sync-translated-content ${{ matrix.lang }}

- name: Gather related upstream commits
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# get upstream head sha
UPSTREAM_HEAD_SHA=$(cd "${{ github.workspace }}/mdn/content" && git rev-parse HEAD)
echo "upstream head sha: ${UPSTREAM_HEAD_SHA}"
# get original path of moved files
MOVED_FILES=$(git diff --cached --name-status --diff-filter=R | cut -f2 | sed "s|files/${{ matrix.lang }}|files/en-us|")
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 -F sha="${UPSTREAM_HEAD_SHA}" --jq '.[0].html_url')
if [ -n "${COMMIT_URL}" ]; then
FILE_COMMIT_URLS+="- ${COMMIT_URL}\n"
fi
done <<< "${MOVED_FILES}"

FILE_COMMIT_URLS=$(echo -e "${FILE_COMMIT_URLS}" | grep -v '^$' | sort | uniq)
echo -e "commit urls:\n${FILE_COMMIT_URLS}"

# set multiline string to env
# https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings
# as the commit urls would not contain 'EOF', we can use it as a delimiter
{
echo 'COMMIT_URLS<<EOF'
echo "${FILE_COMMIT_URLS}"
echo EOF
} >> "$GITHUB_ENV"

- name: Create PR with sync for ${{ matrix.lang }}
uses: peter-evans/create-pull-request@v6
with:
Expand All @@ -67,7 +97,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 }}
Loading