Skip to content

Commit

Permalink
Limit pipeline to branches
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Poyigi <[email protected]>
  • Loading branch information
sampoyigi committed Aug 10, 2024
1 parent a3e0ea9 commit 6d48d4b
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 3 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/pint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: PHP Linting (Pint)

on: [ push, pull_request, workflow_dispatch ]
on:
push:
branches:
- master
- v4
- release/*
- hotfix/*
pull_request:
- master
- v4
- release/*
- hotfix/*
workflow_dispatch:

jobs:
phplint:
Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: Pest Tests

on: [ push, pull_request, workflow_dispatch ]
on:
push:
branches:
- master
- v4
- release/*
- hotfix/*
pull_request:
- master
- v4
- release/*
- hotfix/*
workflow_dispatch:

jobs:
test:
Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: "Static Analysis"

on: [ push, pull_request, workflow_dispatch ]
on:
push:
branches:
- master
- v4
- release/*
- hotfix/*
pull_request:
- master
- v4
- release/*
- hotfix/*
workflow_dispatch:

jobs:
types:
Expand Down

0 comments on commit 6d48d4b

Please sign in to comment.