You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2024/04/22 19:33:01 UTC

(logging-parent) branch main updated (c98079b -> bf78238)

This is an automated email from the ASF dual-hosted git repository.

vy pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


    from c98079b  Update `actions/checkout` to version `4.1.3` (#163)
     new 83db1a4  Add CodeQL analysis workflow
     new bf78238  Improve email notifications

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .asf.yaml                                          | 18 ++++++++++-
 .../workflows/codeql-analysis.yaml                 | 35 ++++++++++++----------
 2 files changed, 36 insertions(+), 17 deletions(-)
 copy .asf.yaml => .github/workflows/codeql-analysis.yaml (62%)


(logging-parent) 02/02: Improve email notifications

Posted by vy...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git

commit bf78238c0435e66603cef6c3912c19b2c5f4d4f3
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Mon Apr 22 21:13:43 2024 +0200

    Improve email notifications
---
 .asf.yaml | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/.asf.yaml b/.asf.yaml
index 82563ba..1e1ec98 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -15,7 +15,21 @@
 # limitations under the License.
 #
 
-# `.asf.yaml` documentation: https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features
+# `.asf.yaml` is a branch-specific YAML configuration file for Git repositories to control features such as notifications, GitHub settings, etc.
+# See its documentation for details: https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features
+
+# Bare minimum `notifications` to
+#
+# 1. Forward GitHub _activity_ to `notifications@`
+# 2. Forward commits to `commits@`
+# 3. Forward `dependabot` PRs to `robots@`
+#
+# Note that `notifications` are merged with the defaults accessible from: https://gitbox.apache.org/schemes.cgi?logging-parent
+notifications:
+  commits: commits@logging.apache.org
+  issues: notifications@logging.apache.org
+  pullrequests: notifications@logging.apache.org
+  pullrequests_bot_dependabot: robots@logging.apache.org
 
 github:
   description: Parent project internally used in Maven-based projects of the Apache Logging Services
@@ -27,6 +41,8 @@ github:
     - log4j2
     - logging
 
+  del_branch_on_merge: true
+
   features:
     issues: true
 


(logging-parent) 01/02: Add CodeQL analysis workflow

Posted by vy...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git

commit 83db1a4e90b06ce09c4a20eb5c8a411d28b6d953
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Mon Apr 22 21:13:32 2024 +0200

    Add CodeQL analysis workflow
---
 .github/workflows/codeql-analysis.yaml | 39 ++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/.github/workflows/codeql-analysis.yaml b/.github/workflows/codeql-analysis.yaml
new file mode 100644
index 0000000..7770590
--- /dev/null
+++ b/.github/workflows/codeql-analysis.yaml
@@ -0,0 +1,39 @@
+#
+# 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:
+    # At 06:00 on Monday
+    - cron: "00 06 * * 1"
+
+permissions: read-all
+
+jobs:
+
+  analyze:
+    uses: apache/logging-parent/.github/workflows/codeql-analysis-reusable.yaml@main
+    # Permissions required to publish Security Alerts
+    permissions:
+      actions: read
+      contents: read
+      security-events: write