This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch main-site-pro in repository https://gitbox.apache.org/repos/asf/logging-site.git
commit 29e8a10978a380584662d63fb33f7faeaaa8cb70 Author: Volkan Yazıcı <[email protected]> AuthorDate: Tue Dec 30 20:48:45 2025 +0100 Add CodeQL workflow --- .github/workflows/codeql-analysis.yaml | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/.github/workflows/codeql-analysis.yaml b/.github/workflows/codeql-analysis.yaml new file mode 100644 index 00000000..dc8b2163 --- /dev/null +++ b/.github/workflows/codeql-analysis.yaml @@ -0,0 +1,40 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to you under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +name: codeql-analysis + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '32 12 * * 5' + +permissions: read-all + +jobs: + + analyze: + uses: apache/logging-parent/.github/workflows/codeql-analysis-reusable.yaml@rel/12.1.1 + with: + java-version: 17 + # Permissions required to publish Security Alerts + permissions: + actions: read + contents: read + security-events: write
