We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
composer-audit.yml
1 parent a7f2d2d commit 38147b7Copy full SHA for 38147b7
.github/workflows/composer-audit.yml
@@ -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
15
16
17
18
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