diff options
Diffstat (limited to 'fluent-bit/.github/workflows/pr-windows-build.yaml')
-rw-r--r-- | fluent-bit/.github/workflows/pr-windows-build.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fluent-bit/.github/workflows/pr-windows-build.yaml b/fluent-bit/.github/workflows/pr-windows-build.yaml new file mode 100644 index 00000000..2831122f --- /dev/null +++ b/fluent-bit/.github/workflows/pr-windows-build.yaml @@ -0,0 +1,27 @@ +name: PR - Windows checks +on: + workflow_dispatch: + + pull_request: + # Limit to just those changes that 'might' affect Windows for automated builds + # We can always do a manual build for a branch + paths: + - '**.h' + - '**.c' + - '**.windows' + - './conf/**' + - './cmake/**' + types: + - opened + - reopened + - synchronize + +jobs: + pr-windows-build: + uses: ./.github/workflows/call-build-windows.yaml + with: + version: ${{ github.sha }} + ref: ${{ github.sha }} + environment: pr + secrets: + token: ${{ secrets.GITHUB_TOKEN }} |