Skip to content

Commit

Permalink
add addon-checker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzard committed Feb 19, 2023
1 parent bd4b849 commit 1550d87
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/addon-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Kodi Addon-Checker

on: [pull_request]

jobs:
kodi-addon-checker:
runs-on: ubuntu-latest
name: Kodi Addon-Checker
steps:

- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install --user kodi-addon-checker
- name: Extract job variables
shell: bash

run: |
echo "addon=$(git diff --diff-filter=d --name-only HEAD~ | grep /
| cut -d / -f1 | sort | uniq)" >> $GITHUB_OUTPUT
id: extract_vars

- name: Addon-Check
run: $HOME/.local/bin/kodi-addon-checker --branch=${{
github.event.pull_request.base.ref }} --PR ${{
steps.extract_vars.outputs.addon }}

0 comments on commit 1550d87

Please sign in to comment.