Skip to content

Commit

Permalink
Try update catalogs workflow again
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeaun committed Aug 25, 2024
1 parent 7b22b32 commit 46f03c4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/update-catalogs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Update Catalogs

on:
push:
branches:
- l10n_main
workflow_dispatch:

jobs:
update-catalogs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: l10n_main
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: Update catalogs.json
run: |
node scripts/catalogs.js
if git diff --quiet src/data/catalogs.json; then
echo "No changes to catalogs.json"
else
echo "Changes to catalogs.json"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add src/data/catalogs.json
git commit -m "Update catalogs.json"
git push origin HEAD:l10n_main
fi

0 comments on commit 46f03c4

Please sign in to comment.