-
Notifications
You must be signed in to change notification settings - Fork 30
31 lines (27 loc) · 902 Bytes
/
pull-request.yml
File metadata and controls
31 lines (27 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: "Pull Request Checks"
on: [ push, workflow_dispatch, pull_request ]
jobs:
higgs-shop-sample-app:
name: "Check Higgs Shop Sample App PR"
uses: ./.github/workflows/higgs-shop-sample-app-pull-request.yml
with:
app_relative_path: "core-sdk-samples/higgs-shop-sample-app"
automerge-dependabot:
name: "Save PR Number for Dependabot Automerge"
needs: [ higgs-shop-sample-app ]
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- name: "Checkout PR branch"
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: "Save Pull Request Number"
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v3
with:
name: pr
path: pr/