Localisation updates from https://translatewiki.net. #25
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
# Checks the PR label against the app version, fails if they do not match. | |
# This is to prevent unwanted PRs from being merged into main. | |
name: Check PR and App Versions | |
on: | |
pull_request: | |
types: | |
- opened | |
branches: | |
- 'main' | |
workflow_dispatch: # allows workflow to be triggered manually | |
jobs: | |
check-version: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check PR label and App Versions | |
continue-on-error: false | |
run: | | |
echo "Testing" |