deer social fork for personal usage. but you might see a use idk. github mirror
4
fork

Configure Feed

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

added nightly-update-source-languages back

ayla c8d773b9 bb2798f1

+38
+38
.github/workflows/nightly-update-source-languages.yaml
··· 1 + name: Nightly Update Source Languages 2 + on: 3 + schedule: 4 + - cron: '0 2 * * *' # run at 2 AM UTC 5 + workflow_dispatch: 6 + 7 + jobs: 8 + extract-languages: 9 + name: Nightly Update Source Languages 10 + runs-on: ubuntu-latest 11 + 12 + permissions: 13 + # Give the default GITHUB_TOKEN write permission to commit and push the 14 + # added or changed files to the repository. 15 + contents: write 16 + 17 + steps: 18 + - name: Check out Git repository 19 + uses: actions/checkout@v3 20 + with: 21 + ssh-key: ${{secrets.GH_ACTION_DEPLOY_KEY}} 22 + - name: Install node 23 + uses: actions/setup-node@v4 24 + with: 25 + node-version-file: .nvmrc 26 + - name: Yarn install 27 + uses: Wandalen/wretry.action@master 28 + with: 29 + command: yarn --frozen-lockfile 30 + attempt_limit: 3 31 + attempt_delay: 2000 32 + - name: Extract language strings 33 + run: yarn intl:extract 34 + - name: Create commit 35 + uses: stefanzweifel/git-auto-commit-action@v5 36 + with: 37 + commit_message: Nightly source-language update 38 + file_pattern: ./src/locale/locales/en/messages.po