File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint Unity Csharp for Dispatch
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ include-paths :
7
+ description : ' Comma-separated regex patterns for files or directories to include. More info: https://www.gnu.org/software/grep/manual/'
8
+ required : true
9
+ type : string
10
+ default : ' Assets/Tests/StyleTest/.*'
11
+ exclude-paths :
12
+ description : ' Exclude files or directories (regex, comma-separated)'
13
+ required : false
14
+ type : string
15
+ default : ' '
16
+
17
+ jobs :
18
+ unity-cs-linter :
19
+ uses : IShix-g/Unity-GitHubActions/.github/workflows/reusable-unity-cs-linter-dispatch.yaml@main
20
+ with :
21
+ base-branch : ${{ github.ref }}
22
+ editorconfig-branch : ${{ github.event.repository.default_branch }}
23
+ include-paths : ${{ inputs.include-paths }}
24
+ exclude-paths : ${{ inputs.exclude-paths }}
Original file line number Diff line number Diff line change 1
- name : Lint Unity Csharp
1
+ name : Lint Unity Csharp for Pull Request
2
2
3
3
on :
4
4
pull_request :
You can’t perform that action at this time.
0 commit comments