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.
1 parent 78a20dc commit 91dc3f0Copy full SHA for 91dc3f0
.github/workflows/check-duplicates.yml
@@ -1,14 +1,10 @@
1
name: Check and Resolve Duplicate Filenames
2
3
on:
4
- push:
5
- paths:
6
- - 'WAIC-TEST/HTML_見送り/**'
7
- - 'WAIC-TEST/HTML_未着手/**'
8
pull_request:
9
10
11
+ types: [closed]
+ branches:
+ - master
12
workflow_dispatch:
13
14
permissions:
@@ -20,6 +16,7 @@ env:
20
16
21
17
jobs:
22
18
check-duplicates:
19
+ if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
23
runs-on: ubuntu-latest
24
outputs:
25
duplicates_found: ${{ steps.check.outputs.duplicates_found }}
0 commit comments