Translations update from Hosted Weblate #760
Workflow file for this run
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: Validate Triple-T store files | |
# use it on your own project: https://github.com/TrianguloY/action-validate-Triple-T | |
on: | |
# run this workflow on master branch push | |
push: | |
branches: | |
- master | |
# run this workflow on master pull requests | |
pull_request: | |
branches: | |
- master | |
# Cancel running actions if new commits are added | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download project files | |
uses: actions/checkout@v4 | |
- name: Validate Triple-T files | |
uses: TrianguloY/action-validate-Triple-T@v1 | |
with: | |
ignore: 'Changelog too large' |