You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flagon.apache.org by po...@apache.org on 2021/02/11 17:50:08 UTC

[incubator-flagon-useralejs] branch master updated: adds dependabot for npm dependencies

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

poorejc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-flagon-useralejs.git


The following commit(s) were added to refs/heads/master by this push:
     new f58353d  adds dependabot for npm dependencies
f58353d is described below

commit f58353d7cfc311fea3950aeab654f7d458fffcf0
Author: poorejc <po...@apache.org>
AuthorDate: Thu Feb 11 12:49:46 2021 -0500

    adds dependabot for npm dependencies
---
 .github/dependabot.yml | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..f432a42
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,30 @@
+
+# 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.
+
+version: 2
+updates:
+  - package-ecosystem: "npm"
+    directory: "/"
+    schedule:
+      interval: "weekly"
+    #run dependency checks against test branch, should lead Master branch
+    target-branch: "test"
+    ignore:
+    # ignore jsdom--will be moved to other testing framework
+      - dependency-name: "jsdom"
+    labels: "maintenance"
+    reviewers:
+      - 'poorejc'
\ No newline at end of file