check for prospector updates #1183
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: check for prospector updates | |
on: {workflow_dispatch, schedule: [cron: '0 0 * * *']} | |
jobs: | |
check-for-updates: | |
runs-on: ubuntu-22.04 | |
name: check for prospector updates | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
architecture: x64 | |
- id: version | |
name: check version | |
run: | | |
pip install -U prospector | |
pip freeze | grep 'prospector==' | sed -E 's#(prospector)#\1\[with_everything\]#g' >requirements.txt | |
version="$(sed -E 's#prospector\[with_everything\]==(.*)#\1#g' ./requirements.txt)" | |
echo "version=$version" >>$GITHUB_OUTPUT | |
echo "message=automatic prospector update [$version]" >>$GITHUB_OUTPUT | |
- uses: peter-evans/create-pull-request@v3.10.0 | |
id: new_pull_request | |
with: | |
delete-branch: true | |
title: ${{ steps.version.outputs.message }} | |
commit-message: ${{ steps.version.outputs.message }} | |
branch: automatic-prospector-update | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
- if: steps.new_pull_request.outputs.pull-request-url != '' | |
run: gh pr merge --auto --squash ${{ steps.new_pull_request.outputs.pull-request-url }} |