chore: Ignore website directory for build and test workflows (#3426)

pull/3427/head
Michael Li 3 years ago committed by GitHub
parent 78f81af438
commit 88adfecb59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,6 +6,8 @@ on:
- '**'
tags-ignore:
- '**'
paths-ignore:
- 'website/'
workflow_call:
workflow_dispatch:

@ -1,5 +1,9 @@
name: "golangci-lint"
on: ["pull_request"]
on:
pull_request:
paths-ignore:
- 'website/**'
permissions:
contents: read

@ -1,9 +1,11 @@
name: test-sql
on:
- workflow_dispatch
- push
- workflow_call
push:
paths-ignore:
- 'website/**'
workflow_call:
workflow_dispatch:
permissions:
contents: read

@ -1,9 +1,11 @@
name: test
on:
- workflow_dispatch
- push
- workflow_call
push:
paths-ignore:
- 'website/**'
workflow_call:
workflow_dispatch:
permissions:
contents: read

Loading…
Cancel
Save