mirror of
https://github.com/goharbor/harbor
synced 2025-04-18 12:45:46 +00:00
26 lines
410 B
YAML
26 lines
410 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'docs/**'
|
|
- '**.md'
|
|
- 'tests/**'
|
|
- '!tests/**.sh'
|
|
- '!tests/apitests/**'
|
|
- '!tests/ci/**'
|
|
push:
|
|
paths:
|
|
- 'docs/**'
|
|
- '**.md'
|
|
- 'tests/**'
|
|
- '!tests/**.sh'
|
|
- '!tests/apitests/**'
|
|
- '!tests/ci/**'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No build required"'
|