Update pull request workflow for license checks
This commit is contained in:
6
.github/workflows/pull_request.yml
vendored
6
.github/workflows/pull_request.yml
vendored
@@ -39,7 +39,8 @@ jobs:
|
|||||||
- name: Checkout PR branch
|
- name: Checkout PR branch
|
||||||
if: steps.check_changes.outputs.changes_detected == 'true'
|
if: steps.check_changes.outputs.changes_detected == 'true'
|
||||||
run: |
|
run: |
|
||||||
git checkout ${{ github.head_ref }}
|
git fetch origin pull/${{ github.event.pull_request.number }}/head:${{ github.event.pull_request.head.ref }}
|
||||||
|
git checkout ${{ github.event.pull_request.head.ref }}
|
||||||
|
|
||||||
- name: Commit Changes
|
- name: Commit Changes
|
||||||
if: steps.check_changes.outputs.changes_detected == 'true'
|
if: steps.check_changes.outputs.changes_detected == 'true'
|
||||||
@@ -48,8 +49,7 @@ jobs:
|
|||||||
git config --global user.email "actions@github.com"
|
git config --global user.email "actions@github.com"
|
||||||
git add .
|
git add .
|
||||||
git commit -m "Actions: Licenses updated [skip ci]"
|
git commit -m "Actions: Licenses updated [skip ci]"
|
||||||
git push
|
git push origin HEAD:${{ github.event.pull_request.head.ref }}
|
||||||
|
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
Reference in New Issue
Block a user