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

ppkarwasz pushed a commit to branch test/secrets
in repository https://gitbox.apache.org/repos/asf/logging-flume-mongodb.git

commit c68f1ffa26d74978101e7d29dd1a6efaf8091232
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Wed Sep 2 20:54:07 2026 +0200

    test: list available secrets
---
 .github/workflows/list-secret-names.yaml | 34 ++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/.github/workflows/list-secret-names.yaml 
b/.github/workflows/list-secret-names.yaml
new file mode 100644
index 0000000..1ed1843
--- /dev/null
+++ b/.github/workflows/list-secret-names.yaml
@@ -0,0 +1,34 @@
+#
+# 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: List secret names
+
+on:
+  push:
+    branches:
+      - "test/secrets"
+
+permissions: { }
+
+jobs:
+  list-secret-names:
+    runs-on: ubuntu-latest
+    steps:
+      - name: List available secret names
+        env:
+          SECRETS_CONTEXT: ${{ toJSON(secrets) }}
+        run: jq -r 'keys[]' <<< "${SECRETS_CONTEXT}"

Reply via email to