Skip to content

Merge branch 'master' of https://github.com/infotelGLPI/mydashboard #156

Merge branch 'master' of https://github.com/infotelGLPI/mydashboard

Merge branch 'master' of https://github.com/infotelGLPI/mydashboard #156

Workflow file for this run

name: Update POT
on:
push:
branches: [ master ]
paths-ignore:
- 'locales/**'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
run:
name: Update POT
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: install xgettext
run: sudo apt-get install gettext;
- name: Update POT
run: sh tools/extract_template.sh;
- name: Commit changes
uses: EndBug/[email protected]
with:
message: "Update POT"
- name: Push changes
uses: actions-go/push@v1