Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Sync Launchpad issues to GitHub #619

Sync Launchpad issues to GitHub

Sync Launchpad issues to GitHub #619

name: Sync Launchpad issues to GitHub
on:
push:
branches:
- xubuntu
paths:
- '.github/workflows/track-lp-issues.yaml'
- '.github/lpbugtracker.py'
schedule:
- cron: '0 9 * * *'
jobs:
add-lp-issues:
name: Sync Launchpad issues to GitHub bug tracker
runs-on: ubuntu-latest
steps:
# Checkout code
- uses: actions/checkout@v4
- name: Install Python 3
uses: actions/setup-python@v5.1.0
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install launchpadlib
- name: Install hub
run: |
sudo apt-get update
sudo apt-get install hub
- name: Mirror GitHub bugs from Launchpad
id: getlpbugs
run: |
python .github/lpbugtracker.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}