Fetch before rebase in pull_request workflow
Some checks failed
Build & Test / Validate (pull_request) Failing after 14s
Build & Test / Run Unit Tests (pull_request) Has been skipped
Build & Test / Run UI Tests (pull_request) Has been skipped

This commit is contained in:
William Brawner 2024-08-23 18:05:48 -06:00
parent 0365d18ff7
commit d8b0891f20
Signed by: wbrawner
GPG key ID: 8FF12381C6C90D35

View file

@ -9,6 +9,7 @@ jobs:
name: Validate
steps:
- uses: actions/checkout@v4
- run: git fetch --all
- run: git rebase origin/main
- name: set up JDK
uses: https://git.wbrawner.com/actions/setup-java@v4
@ -24,6 +25,7 @@ jobs:
- validate
steps:
- uses: actions/checkout@v4
- run: git fetch --all
- run: git rebase origin/main
- name: set up JDK
uses: https://git.wbrawner.com/actions/setup-java@v4
@ -50,6 +52,7 @@ jobs:
- validate
steps:
- uses: actions/checkout@v4
- run: git fetch --all
- run: git rebase origin/main
- name: set up JDK
uses: https://git.wbrawner.com/actions/setup-java@v4