One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update i18n workflow

authored by

Evan Huang and committed by
GitHub
4477755c b0a23df0

+6 -2
+6 -2
.github/workflows/translate.yml
··· 2 2 on: 3 3 push: 4 4 branches: [main] 5 + paths: 6 + - 'i18n.json' 7 + - 'locales/en.json' 8 + workflow_dispatch: 5 9 permissions: 6 10 contents: write 7 11 jobs: ··· 15 19 run: npx lingo.dev@latest run 16 20 - name: Commit changes 17 21 run: | 18 - git config user.name "Lingo.dev" 19 - git config user.email "support@lingo.dev" 22 + git config user.name "github-actions[bot]" 23 + git config user.email "github-actions[bot]@users.noreply.github.com" 20 24 git add . 21 25 git diff --staged --quiet || git commit -m "feat: update translations via @LingoDotDev" 22 26 git push