mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-15 22:12:19 -04:00
20 lines
554 B
YAML
20 lines
554 B
YAML
name: i18n CI PR
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "server/i18n/**"
|
|
- "webapp/channels/src/i18n/**"
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
# This file just imports the template yml
|
|
# and runs it with concurrency. We have to do this in this way
|
|
# because the concurrency label cannot be added conditionally
|
|
# and it _always_ cancels pending workflows. So master CI builds
|
|
# always kept getting canceled.
|
|
|
|
jobs:
|
|
pr-ci:
|
|
uses: ./.github/workflows/i18n-ci-template.yml
|
|
secrets: inherit
|