chore(fix): missing meta entries should be omitted from readmes #28
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: Update READMEs | |
on: | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
jobs: | |
update: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
if: github.repository == 'just-a-paw/language' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- run: npm ci | |
- run: npm test | |
- run: npm run update-readmes | |
env: | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_API_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} | |
- run: git config user.name "Paw Bot" | |
- run: git config user.email "translating@paw.bot" | |
- run: git add AGGREGATE.md | |
- continue-on-error: true | |
run: git add [a-z][a-z]{-*,}/README.md | |
- continue-on-error: true | |
run: git add [a-z][a-z][a-z]{-*,}/README.md | |
- run: | | |
(git commit -m 'chore: 🤖 update readme' && git push) || echo "nothing to commit" |