We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf7a52e commit d6f2aceCopy full SHA for d6f2ace
.github/workflows/auto_format.yml
@@ -5,9 +5,9 @@ jobs:
5
runs-on: ubuntu-latest
6
steps:
7
- name: Checkout PR branch
8
- run: |
9
- git fetch origin pull/${{ github.event.pull_request.number }}/head:${{ github.event.pull_request.head.ref }}
10
- git checkout ${{ github.event.pull_request.head.ref }}
+ uses: actions/checkout@v2
+ with:
+ ref: ${{ github.event.pull_request.head.sha }}
11
- name: autopep8
12
uses: peter-evans/autopep8@v1
13
with:
@@ -20,6 +20,4 @@ jobs:
20
run: |
21
git config --global user.name 'Torantulino'
22
git config --global user.email '[email protected]'
23
- git remote set-url origin https://x-access-token:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/${{ github.repository }}
24
- git commit -am "Automated changes"
25
- git push
+ git remote set
0 commit comments