Skip to content

Commit 08d9cdf

Browse files
authored
Adjust workflow triggers (#797)
1 parent 51ce645 commit 08d9cdf

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

.github/workflows/appinspect.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Validate SDK with Splunk AppInspect
2-
on: [push, workflow_dispatch]
2+
on:
3+
push:
4+
branches: [develop, master]
5+
pull_request:
6+
workflow_dispatch:
37

48
env:
59
PYTHON_VERSION: 3.13

.github/workflows/lint.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Python SDK Lint
2-
on: [push, workflow_dispatch]
2+
on:
3+
push:
4+
branches: [develop, master]
5+
pull_request:
6+
workflow_dispatch:
37

48
jobs:
59
lint:

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Python SDK CI
2-
on: [push, workflow_dispatch]
2+
on:
3+
push:
4+
branches: [develop, master]
5+
pull_request:
6+
workflow_dispatch:
37

48
concurrency:
59
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

0 commit comments

Comments
 (0)