Deleted no-longer needed workflows #321
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
name: Sync _locales/* between <chrome|firefox>/extension/, then * to adamlui/chatgpt-apps/chatgpt-widescreen/*, then greasemonkey/* to adamlui/userscripts/chatgpt/chatgpt-widescreen/* | |
on: | |
push: | |
branches: [main] | |
paths: ["***", "!.*", "!package*json", "!eslint.config*"] | |
jobs: | |
build: | |
if: (github.repository == 'adamlui/chatgpt-widescreen') && (github.event.commits[0].committer.username != 'kudo-sync-bot') | |
runs-on: ubuntu-latest | |
env: | |
GIT_AUTHOR_NAME: ${{ github.event.commits[0].author.name }} | |
GIT_AUTHOR_EMAIL: ${{ github.event.commits[0].author.email }} | |
GIT_COMMITTER_NAME: kudo-sync-bot | |
GIT_COMMITTER_EMAIL: [email protected] | |
steps: | |
- name: Checkout adamlui/chatgpt-widescreen | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.REPO_SYNC_PAT }} | |
repository: adamlui/chatgpt-widescreen | |
path: adamlui/chatgpt-widescreen | |
fetch-depth: 2 | |
- name: Checkout adamlui/chatgpt-apps | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.REPO_SYNC_PAT }} | |
repository: adamlui/chatgpt-apps | |
path: adamlui/chatgpt-apps | |
- name: Checkout adamlui/userscripts | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.REPO_SYNC_PAT }} | |
repository: adamlui/userscripts | |
path: adamlui/userscripts | |
- name: Sync _locales/* between <chrome|firefox>/extension/ | |
run: | | |
cd ${{ github.workspace }}/adamlui/chatgpt-widescreen | |
ff_dir="firefox/extension/_locales" | |
chrome_dir="chrome/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" | |
chrome_file="$chrome_dir/$locale/messages.json" | |
if [[ -f "$ff_file" && -f "$chrome_file" ]] ; then | |
# Get the latest commit timestamps for both files | |
ff_timestamp=$(git log -1 --format="%ct" -- "$ff_file" 2>/dev/null || echo 0) | |
chrome_timestamp=$(git log -1 --format="%ct" -- "$chrome_file" 2>/dev/null || echo 0) | |
# Sync the most recently updated file to the other dir | |
if [[ $ff_timestamp -gt $chrome_timestamp ]] ; then | |
cp -f "$ff_file" "$chrome_file" | |
elif [[ $chrome_timestamp -gt $ff_timestamp ]] ; then | |
cp -f "$chrome_file" "$ff_file" | |
fi | |
fi | |
done | |
- name: Sync * to adamlui/chatgpt-apps/chatgpt-widescreen/* | |
run: | | |
rsync -avhr --delete --exclude={'.*','eslint*','package*json'} \ | |
${{ github.workspace }}/adamlui/chatgpt-widescreen/ \ | |
${{ github.workspace }}/adamlui/chatgpt-apps/chatgpt-widescreen/ | |
- name: Sync greasemonkey/* to adamlui/userscripts/chatgpt/chatgpt-widescreen/* | |
run: | | |
rsync -avhr --delete \ | |
${{ github.workspace }}/adamlui/chatgpt-widescreen/greasemonkey/ \ | |
${{ github.workspace }}/adamlui/userscripts/chatgpt/chatgpt-widescreen/ | |
- 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: Push changes to adamlui/chatgpt-widescreen | |
run: | | |
cd ${{ github.workspace }}/adamlui/chatgpt-widescreen | |
git add . | |
git commit -n -m "$ESCAPED_MSG ↞ [auto-sync from \`adamlui/chatgpt-widescreen\`]" || true | |
git push | |
- name: Push changes to adamlui/chatgpt-apps | |
run: | | |
cd ${{ github.workspace }}/adamlui/chatgpt-apps | |
git add . | |
git commit -n -m "$ESCAPED_MSG ↞ [auto-sync from \`adamlui/chatgpt-widescreen\`]" || true | |
git push | |
- name: Push changes to adamlui/userscripts | |
run: | | |
cd ${{ github.workspace }}/adamlui/userscripts | |
git add . | |
git commit -n -m "$ESCAPED_MSG ↞ [auto-sync from \`adamlui/chatgpt-widescreen\`]" || true | |
git push |