Skip to content

Commit 38147b7

Browse files
authored
GitHub Actions: Create composer-audit.yml (#29)
1 parent a7f2d2d commit 38147b7

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Composer Audit
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '23 3 * * 1' # Weekly on Monday
7+
pull_request:
8+
branches:
9+
- main
10+
paths:
11+
- .github/workflows/composer-audit.yml
12+
- composer.*
13+
push:
14+
branches:
15+
- main
16+
paths:
17+
- .github/workflows/composer-audit.yml
18+
- composer.*
19+
20+
concurrency:
21+
group: ${{ github.workflow }}-${{ github.ref_name }}
22+
cancel-in-progress: true
23+
24+
permissions: {}
25+
26+
jobs:
27+
composer-audit:
28+
uses: typisttech/.github/.github/workflows/composer-audit.yml@v2
29+
permissions:
30+
contents: read

0 commit comments

Comments
 (0)