2022-08-16 11:19:16 +00:00
|
|
|
# Change the look of Adwaita, with ease
|
|
|
|
# Copyright (C) 2022 Gradience Team
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2022-08-13 14:18:15 +00:00
|
|
|
name: "Translation"
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2022-08-15 06:56:55 +00:00
|
|
|
- cron: '0 0,12 * * *'
|
2022-08-19 18:38:54 +00:00
|
|
|
workflow_dispatch:
|
2022-08-13 14:18:15 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-08-13 22:45:52 +00:00
|
|
|
generate:
|
2022-08-15 06:56:55 +00:00
|
|
|
name: Generate .pot and LINGUAS
|
2022-08-13 14:18:15 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Update .pot
|
2022-08-16 19:55:45 +00:00
|
|
|
uses: GradienceTeam/action-update-pot@main
|
2022-08-13 14:51:08 +00:00
|
|
|
with:
|
2022-08-15 23:29:18 +00:00
|
|
|
title: "Gradience POT file"
|
|
|
|
copyright: "Gradience Team"
|
2022-08-13 14:51:08 +00:00
|
|
|
license: "GNU GPLv3"
|
2022-08-15 23:29:18 +00:00
|
|
|
author: "Gradience Team"
|
2022-09-18 09:05:18 +00:00
|
|
|
commiter: "Gradience Bot"
|
|
|
|
commiter_email: "AdwCustomizerTeam@proton.me"
|
2022-08-13 14:51:08 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
2022-08-13 22:45:52 +00:00
|
|
|
|
|
|
|
- name: Update linguas
|
2022-08-16 19:55:45 +00:00
|
|
|
uses: GradienceTeam/action-update-linguas@main
|
2022-09-18 09:05:18 +00:00
|
|
|
with:
|
|
|
|
author: "Gradience Bot"
|
|
|
|
author_email: "AdwCustomizerTeam@proton.me"
|
2022-08-13 22:45:52 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
2022-08-13 22:14:05 +00:00
|
|
|
|