Skip to content

Report LP issue on GitHub #1450

Report LP issue on GitHub

Report LP issue on GitHub #1450

name: Report LP issue on GitHub
on:
push:
paths:
- '.github/workflows/track-lp-issues.yaml'
schedule:
- cron: '0 20 * * *'
jobs:
add-lp-issues:
name: Port LP issues into Yaru bug tracker
runs-on: ubuntu-latest
steps:
# Checkout code
- uses: actions/checkout@v4
- name: Install Python 3
uses: actions/setup-python@v5.1.0
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install launchpadlib
- name: Mirror Yaru bugs from Launchpad
id: getlpbugs
run: |
python .github/lpbugtracker.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}