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

rombert pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-committer-cli.git


The following commit(s) were added to refs/heads/master by this push:
     new 1722e06  chore(ci): add allowlist-check github action
1722e06 is described below

commit 1722e06405800d0aa7060b4ee7c0255257f1fec3
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Aug 5 17:51:12 2026 +0200

    chore(ci): add allowlist-check github action
    
    This ensures that we don't accidently introduce actions that are not allowed
---
 .github/workflows/allowlist-check.yml | 39 +++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/.github/workflows/allowlist-check.yml 
b/.github/workflows/allowlist-check.yml
new file mode 100644
index 0000000..6786fff
--- /dev/null
+++ b/.github/workflows/allowlist-check.yml
@@ -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: Check Actions Usage
+
+on:
+  workflow_dispatch:
+  push:
+    branches:
+      - master
+    paths:
+      - ".github/**"
+  pull_request:
+    paths:
+      - ".github/**"
+
+permissions:
+  contents: read
+
+jobs:
+  check:
+    name: Check actions usage
+    uses: 
apache/infrastructure-actions/.github/workflows/check-project-actions.yml@main
+    permissions:
+      contents: read

Reply via email to