Skip to content

Added author info to About modal, moved chatgpt.js info down #807

Added author info to About modal, moved chatgpt.js info down

Added author info to About modal, moved chatgpt.js info down #807

name: Sync _locales/ between chatgpt-auto-continue/<chromium|firefox>/extension/, then chatgpt-auto-continue/ to adamlui/chatgpt-auto-continue/*, then chatgpt-auto-continue/greasemonkey/* to adamlui/userscripts/chatgpt/chatgpt-auto-continue/
on:
push:
branches: [main]
paths: [chatgpt-auto-continue/**]
jobs:
build:
if: (github.repository == 'adamlui/ai-web-extensions') && (github.event.commits[0].committer.username != 'kudo-sync-bot')
runs-on: ubuntu-latest
env:
TZ: PST8PDT
steps:
- name: Checkout adamlui/ai-web-extensions
uses: actions/checkout@v4
with:
token: ${{ secrets.REPO_SYNC_PAT }}
repository: adamlui/ai-web-extensions
path: adamlui/ai-web-extensions
fetch-depth: 2
- name: Checkout adamlui/chatgpt-auto-continue
uses: actions/checkout@v4
with:
token: ${{ secrets.REPO_SYNC_PAT }}
repository: adamlui/chatgpt-auto-continue
path: adamlui/chatgpt-auto-continue
- name: Checkout adamlui/userscripts
uses: actions/checkout@v4
with:
token: ${{ secrets.REPO_SYNC_PAT }}
repository: adamlui/userscripts
path: adamlui/userscripts
- name: Sync _locales/ between chatgpt-auto-continue/<chromium|firefox>/extension/
run: |
cd ${{ github.workspace }}/adamlui/ai-web-extensions/chatgpt-auto-continue
ff_dir="firefox/extension/_locales"
chromium_dir="chromium/extension/_locales"
# Loop thru all lang dirs in firefox
for locale in $(find "$ff_dir" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;) ; do
ff_file="$ff_dir/$locale/messages.json"
chromium_file="$chromium_dir/$locale/messages.json"
if [[ -f "$ff_file" && -f "$chromium_file" ]] ; then
# Get the latest commit timestamps for both files
ff_timestamp=$(git log -1 --format="%ct" -- "$ff_file" 2>/dev/null || echo 0)
chromium_timestamp=$(git log -1 --format="%ct" -- "$chromium_file" 2>/dev/null || echo 0)
# Sync the most recently updated messages.json to the other dir
if [[ $ff_timestamp -ne $chromium_timestamp ]] ; then
[[ "$locales_updated" != true ]] && locales_updated=true
if (( $ff_timestamp > $chromium_timestamp )) ; then
cp -f "$ff_file" "$chromium_file"
else cp -f "$chromium_file" "$ff_file" ; fi
fi
fi
done
if [[ "$locales_updated" == true ]] ; then echo "LOCALES_UPDATED=true" >> $GITHUB_ENV ; fi
- name: Sync chatgpt-auto-continue/ to adamlui/chatgpt-auto-continue/
run: |
rsync -avhr --delete --filter='P /.*' \
${{ github.workspace }}/adamlui/ai-web-extensions/chatgpt-auto-continue/ \
${{ github.workspace }}/adamlui/chatgpt-auto-continue/
- name: Sync chatgpt-auto-continue/greasemonkey/ to adamlui/userscripts/chatgpt/chatgpt-auto-continue/
run: |
rsync -avhr --delete \
${{ github.workspace }}/adamlui/ai-web-extensions/chatgpt-auto-continue/greasemonkey/ \
${{ github.workspace }}/adamlui/userscripts/chatgpt/chatgpt-auto-continue/
- name: Escape backticks in commit msg
env:
COMMIT_MSG: ${{ github.event.head_commit.message }}
run: |
echo "ESCAPED_MSG<<EOF" >> $GITHUB_ENV
echo "$COMMIT_MSG" | sed 's/`/\`/g' >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Config committer
run: |
gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
git config --global commit.gpgsign true
git config --global user.name "kudo-sync-bot"
git config --global user.email "auto-sync@kudoai.com"
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
- name: Push changes to adamlui/ai-web-extensions
if: env.LOCALES_UPDATED == 'true'
run: |
cd ${{ github.workspace }}/adamlui/ai-web-extensions
git pull # again to sync w/ concurrent workflow updates
git add . && git commit -n -m "$ESCAPED_MSG ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]" || true
git push
- name: Push changes to adamlui/chatgpt-auto-continue
run: |
cd ${{ github.workspace }}/adamlui/chatgpt-auto-continue
git pull # again to sync w/ concurrent workflow updates
git add . && git commit -n -m "$ESCAPED_MSG ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]" || true
git push
- name: Push changes to adamlui/userscripts
run: |
cd ${{ github.workspace }}/adamlui/userscripts
git pull # again to sync w/ concurrent workflow updates
git add . && git commit -n -m "$ESCAPED_MSG ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]" || true
git push