mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 06:23:54 +01:00
40 lines
946 B
YAML
40 lines
946 B
YAML
|
name: Update dependencies
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
- cron: '0 18 * * TUE'
|
||
|
|
||
|
permissions:
|
||
|
pull-requests: write
|
||
|
contents: write
|
||
|
|
||
|
jobs:
|
||
|
update:
|
||
|
name: Update dependencies
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
ref: master
|
||
|
- name: Set up Python
|
||
|
uses: actions/setup-python@v4
|
||
|
with:
|
||
|
python-version: '3.11'
|
||
|
cache: pip
|
||
|
- name: Update dependencies
|
||
|
run: |
|
||
|
pip install pip-tools invoke
|
||
|
invoke update-dependencies --no-sync
|
||
|
- name: Create Pull Request
|
||
|
uses: peter-evans/create-pull-request@v4
|
||
|
id: create-pull-request
|
||
|
with:
|
||
|
token: ${{ secrets.PERSONAL_TOKEN_PR }}
|
||
|
commit-message: Update dependencies
|
||
|
base: master
|
||
|
branch: update-dependencies
|
||
|
title: Update dependencies
|
||
|
delete-branch: true
|