mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-04 04:03:58 +00:00
David Lapshin
0dbd5c809c
# Description Made several improvements to workflow files and added a new Typos workflow. _We probably should squash this on merge_ ## Type of change <!-- What type of change does your pull request introduce? Put an `x` in the box that apply. --> - [ ] Bugfix (Change which fixes a issue) - [ ] New feature (Change which adds new functionality) - [x] Enhancement (Change which slightly improves existing code) - [ ] Breaking change (This change will introduce incompatibility with existing functionality) ## Changelog <!-- This is optional, but highly appreciated. --> - Beautified some workflow files - Updated text in Greetings action - Changed `pypi_deps.yml` file name to `pypi-dependencies.yml` - Added new typo checking workflow ## Testing - [x] I have tested my changes and verified that they work as expected <!-- Required, your PR won't be accepted if you don't do this step. --> ### How to test the changes <!-- Optional, it can speed up review process if you provide the information on how to test your changes. --> No information provided. Signed-off-by: tfuxu <73042332+tfuxu@users.noreply.github.com> Co-authored-by: 0xMRTT <0xMRTT@proton.me> Co-authored-by: tfuxu <73042332+tfuxu@users.noreply.github.com>
53 lines
2 KiB
YAML
53 lines
2 KiB
YAML
# 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/>.
|
|
|
|
|
|
name: Generate PyPI Dependencies
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
paths: requirements.txt
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: Run a multi-line script
|
|
run: |
|
|
curl -O https://raw.githubusercontent.com/flatpak/flatpak-builder-tools/master/pip/flatpak-pip-generator
|
|
chmod +x flatpak-pip-generator
|
|
python -m pip install requirements-parser
|
|
./flatpak-pip-generator --requirements-file=requirements.txt --output pypi-dependencies
|
|
mv pypi-dependencies.json build-aux/flatpak/pypi-dependencies.json
|
|
|
|
- name: Create pull request
|
|
uses: peter-evans/create-pull-request@v4
|
|
with:
|
|
author: "AdwCustomizer <AdwCustomizerTeam@proton.me>"
|
|
title: "meta: update PyPI dependencies for Flatpak"
|
|
body: "This automated PR contains an auto-generated `pypi-dependencies.json` file used in Flatpak manifests."
|
|
labels: flatpak, ci/automated-pr
|
|
commit-message: "meta: update Flatpak PyPI dependencies"
|
|
committer: "AdwCustomizer <AdwCustomizerTeam@proton.me>"
|
|
branch: update-pypi-deps
|