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 c29008c commit 42359a2Copy full SHA for 42359a2
.github/workflows/integration.yaml
@@ -134,7 +134,8 @@ jobs:
134
merge_base=$(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }})
135
echo "Merge base 커밋: $merge_base"
136
137
- files=$(git diff --name-only $merge_base ${{ github.event.pull_request.head.sha }} | tr -d '"')
+ # .github 디렉토리 하위 파일 제외하고 대상 파일로 지정
138
+ files=$(git diff --name-only "$merge_base" ${{ github.event.pull_request.head.sha }} -- . ':(exclude).github/**' | tr -d '"')
139
pr_author="${{ github.event.pull_request.user.login }}"
140
success=true
141
0 commit comments