Dependency Checker #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependency Checker | |
on: | |
schedule: | |
- cron: '0 0 * * 1' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install package and update deps | |
run: | | |
python -m pip install .[dev,test] | |
make checkdeps OUTPUT_FILEPATH=tests/latest_requirements.txt | |
make lint-fix | |
pre-commit autoupdate | |
- name: Create pull request | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
token: ${{ secrets.ORG_SCOPED_TOKEN }} | |
commit-message: Update latest dependencies | |
title: Automated Latest Dependency Updates | |
body: "This is an auto-generated PR with **latest** dependency updates." | |
branch: latest-dep-update | |
branch-suffix: short-commit-hash | |
base: main | |
- name: Enable Pull Request Automerge | |
if: steps.cpr.outputs.pull-request-operation == 'created' | |
uses: peter-evans/enable-pull-request-automerge@v3 | |
with: | |
token: ${{ secrets.ORG_SCOPED_TOKEN }} | |
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} | |
merge-method: squash |