Update 🧀 #102
This file contains hidden or 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 🧀 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags-ignore: | |
| - "v*" | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| update: | |
| name: Update | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Update libs | |
| uses: curse-action/update@master | |
| with: | |
| curse-forge-token: ${{ secrets.CURSE_FORGE_TOKEN }} | |
| - name: Update locales | |
| uses: curse-action/locale@master | |
| with: | |
| curse-wow-token: ${{ secrets.CURSE_TOKEN }} | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| message: "chore: Update libs/locale/data files" |