Add GitHub Action: Notify Translations (#3715)

This commit is contained in:
Sebastián Ramírez
2021-08-18 15:07:08 +02:00
committed by GitHub
parent 3409c9e32f
commit d0ced2c7c9
5 changed files with 137 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
name: Notify Translations
on:
pull_request_target:
types:
- labeled
jobs:
notify-translations:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Allow debugging with tmate
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
with:
limit-access-to-actor: true
- uses: ./.github/actions/notify-translations
with:
token: ${{ secrets.GITHUB_TOKEN }}