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.

fix: update lingodotdev config

authored by

Evan Huang and committed by
GitHub
639d1e13 3a505eb8

+11 -4
+11 -4
.github/workflows/translate.yml
··· 9 9 runs-on: ubuntu-latest 10 10 steps: 11 11 - uses: actions/checkout@v4 12 - - name: Lingo.dev 13 - uses: lingodotdev/lingo.dev@main 14 - with: 15 - api-key: ${{ secrets.MISTRAL_API_KEY }} 12 + - name: Translate 13 + env: 14 + MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }} 15 + run: npx lingo.dev@latest run 16 + - name: Commit changes 17 + run: | 18 + git config user.name "Lingo.dev" 19 + git config user.email "support@lingo.dev" 20 + git add . 21 + git diff --staged --quiet || git commit -m "feat: update translations via @LingoDotDev" 22 + git push