Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKalke committed Aug 9, 2024
1 parent e354ce5 commit dd894b2
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-pull.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: warden build (pull)

on:
workflow_call:
pull_request_target:
paths-ignore:
- "docs/**"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-push-release.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: warden bbuild (push)
on:
workflow_call:
push:
branches: ["main", "release-*"]
tags:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gitleaks.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: gitleaks
on:
workflow_call:
pull_request:
types: [opened, edited, synchronize, reopened, ready_for_review]

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration-tests-pull.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: integration tests (pull)

on:
workflow_call:
pull_request:
paths-ignore:
- '**.md'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration-tests-push.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: integration tests (push)

on:
workflow_call:
push:
branches: [ "main", "release-*" ]
paths-ignore:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pull.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: pull

on:
pull_request_target:
types: [ opened, edited, synchronize, reopened, ready_for_review ]

jobs:
unit-tests:
uses: ./.github/workflows/unit-tests.yaml
1 change: 1 addition & 0 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: unit tests

on:
workflow_call:
pull_request:
paths-ignore:
- '**.md'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/upgrade-test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: upgrade test

on:
workflow_call:
push:
branches: [ "main" ]

Expand Down

0 comments on commit dd894b2

Please sign in to comment.