Skip to content

Commit

Permalink
Add action
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Compiler committed Jun 30, 2020
1 parent 4f5f27c commit 6bb36b4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/recompile-requirements.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Recompile requirements

on:
schedule:
- cron: '00 10 * * 2'

jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Run recompile_requirements.py
run: python3 scripts/dev/recompile_requirements.py
- name: Create pull request
uses: peter-evans/create-pull-request@v2
with:
comitter: qutebrowser bot <[email protected]>
author: qutebrowser bot <[email protected]>
token: ${{ secrets.QUTEBROWSER_BOT_TOKEN }}
commit-message: Update dependencies
title: Update dependencies
branch: update-dependencies

0 comments on commit 6bb36b4

Please sign in to comment.