Skip to content

Commit

Permalink
Merge pull request #531 from to-sta/cronjob
Browse files Browse the repository at this point in the history
Cronjob
  • Loading branch information
andrewtavis authored Nov 5, 2023
2 parents e8fcb25 + 84566eb commit dc4f0d6
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/worker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Find Repeat i18n Values

on:
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
paths:
- "**/en-US.json"
push:
branches: -main
paths:
- "**/en-US.json"

jobs:
worker:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v4

- name: setup python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: execute py script
working-directory: ./frontend/i18n
run: python find_repeat_i18n_values.py

0 comments on commit dc4f0d6

Please sign in to comment.