mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
WORKFLOW: tentative solution for PRs [skip ci]
This commit is contained in:
parent
feed0a1e58
commit
bf619738f8
8
.github/workflows/cooker-selfhosted.yml
vendored
8
.github/workflows/cooker-selfhosted.yml
vendored
|
@ -15,7 +15,7 @@ on:
|
||||||
- '*.sh'
|
- '*.sh'
|
||||||
- 'net.retrodeck.retrodeck.yml'
|
- 'net.retrodeck.retrodeck.yml'
|
||||||
- 'net.retrodeck.retrodeck.appdata.xml'
|
- 'net.retrodeck.retrodeck.appdata.xml'
|
||||||
pull_request:
|
pull_request_target:
|
||||||
branches:
|
branches:
|
||||||
- cooker*
|
- cooker*
|
||||||
|
|
||||||
|
@ -56,6 +56,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
submodules: 'true'
|
submodules: 'true'
|
||||||
|
|
||||||
|
- name: Checkout PR branch (include changes)
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
run: |
|
||||||
|
git fetch origin +refs/pull/${{ github.event.pull_request.number }}/merge
|
||||||
|
git checkout -qf FETCH_HEAD
|
||||||
|
|
||||||
- name: "Install dependencies"
|
- name: "Install dependencies"
|
||||||
run: "automation_tools/install_dependencies.sh"
|
run: "automation_tools/install_dependencies.sh"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue