mirror of https://git.rancher.io/charts
Checking out the PR changes in the other jobs of the pull request workflow
parent
8e539a4e47
commit
3e028af5df
|
@ -38,7 +38,13 @@ jobs:
|
|||
name: Check Container Images
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout base branch
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Checkout PR
|
||||
run: gh pr checkout ${{ github.event.pull_request.number }}
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Check container images
|
||||
run: make check-images
|
||||
|
@ -50,7 +56,13 @@ jobs:
|
|||
name: Check RC Images and Charts
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout base branch
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Checkout PR
|
||||
run: gh pr checkout ${{ github.event.pull_request.number }}
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Check RC images and charts
|
||||
run: make check-rc
|
||||
|
|
Loading…
Reference in New Issue