Skip to content

Commit

Permalink
Fixes CI (#1027)
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon authored Oct 11, 2024
1 parent d4c1840 commit 0076693
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ jobs:
name: Update PRs
runs-on: ubuntu-latest
steps:
- name: Install Python modules
run: pip install PyGithub
- name: Install System Packages
run: |
sudo apt-get update
sudo apt-get install -y python3-github
- name: Update PRs
run: |
from datetime import datetime, timezone
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pr-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ jobs:
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps:
- name: Install Python modules
run: pip install PyGithub
- name: Install System Packages
run: |
sudo apt-get update
sudo apt-get install -y python3-github
- name: Update PR
run: |
from github import Auth, Github
Expand Down

0 comments on commit 0076693

Please sign in to comment.