From 0892d1e90b12d7d31628210c3a4a76db264cf57b Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 30 Apr 2020 11:19:42 +0200 Subject: [PATCH] Add L10n-update workflow --- .github/workflows/L10n-update.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/L10n-update.yml diff --git a/.github/workflows/L10n-update.yml b/.github/workflows/L10n-update.yml new file mode 100644 index 0000000..3faf0b0 --- /dev/null +++ b/.github/workflows/L10n-update.yml @@ -0,0 +1,20 @@ +name: L10n Update + +on: + push: + branches: + - master + +jobs: + trigger-update: + name: L10n Update Trigger + runs-on: ubuntu-latest + + steps: + - name: Repository dispatch + uses: peter-evans/repository-dispatch@v1 + with: + token: ${{ secrets.L10N_ACCESS_TOKEN }} + repository: Icinga/L10n + event-type: update + client-payload: '{"origin": "${{ github.repository }}", "commit": "${{ github.sha }}"}'