Bump numpy from 1.21.0 to 1.26.2 in /extra_requirements #111
Workflow file for this run
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: autopep8 | |
on: pull_request | |
jobs: | |
autopep8: | |
# Check if the PR is not raised by this workflow and is not from a fork | |
if: startsWith(github.head_ref, 'autopep8-patches') == false && github.event.pull_request.head.repo.full_name == github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: autopep8 | |
id: autopep8 | |
uses: peter-evans/autopep8@v1 | |
with: | |
args: --exit-code --recursive --in-place --aggressive --aggressive . | |
- name: Set autopep8 branch name | |
id: vars | |
run: echo ::set-output name=branch-name::"autopep8-patches/${{ github.head_ref }}" | |
- name: Create Pull Request | |
if: steps.autopep8.outputs.exit-code == 2 | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
commit-message: autopep8 action fixes | |
title: Fixes by autopep8 action | |
body: This is an auto-generated PR with fixes by autopep8. | |
labels: autopep8, automated pr | |
reviewers: JoranAngevaare | |
branch: ${{ steps.vars.outputs.branch-name }} | |
- name: Fail if autopep8 made changes | |
if: steps.autopep8.outputs.exit-code == 2 | |
run: exit 1 |