-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (40 loc) · 1000 Bytes
/
ci-doc-shim.yaml
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
# Copyright 2024 Defense Unicorns
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial
name: CI Docs Shim
on:
pull_request:
paths:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
- "goreleaser.yml"
- .gitignore
- renovate.json
- CODEOWNERS
- LICENSE
- CONTRIBUTING.md
- SECURITY.md
# Permissions for the GITHUB_TOKEN used by the workflow.
permissions:
contents: read # Allows reading the content of the repository.
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Shim for test
run: |
echo "Documentation-only change detected; test successful."
validate:
name: validate (go)
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Shim for test
run: |
echo "Documentation-only change detected; validate successful."