-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (43 loc) · 1.04 KB
/
pull-request.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Checks for pull request
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
path-filter:
timeout-minutes: 30
outputs:
actions: ${{steps.changes.outputs.actions}}
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
actions:
- .github/workflows/*.yml
- .github/workflows/*.yaml
- aqua.yaml
check-actions:
needs: path-filter
if: needs.path-filter.outputs.actions == 'true'
uses: ./.github/workflows/_check-actions.yml
permissions: {}
test-code:
needs: path-filter
uses: ./.github/workflows/_test.yml
permissions: {}
status-check:
timeout-minutes: 30
runs-on: ubuntu-latest
needs:
- check-actions
- test-code
permissions: {}
if: failure()
steps:
- run: exit 1