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

shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new dfd79dd  Add Scala Steward GitHub Action
dfd79dd is described below

commit dfd79dd708002071a1637407f44f86a90e028714
Author: Shane Dell <[email protected]>
AuthorDate: Thu Jun 23 13:40:42 2022 -0400

    Add Scala Steward GitHub Action
    
    Closes #185
---
 .github/workflows/scala-steward.yml | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/.github/workflows/scala-steward.yml 
b/.github/workflows/scala-steward.yml
new file mode 100644
index 0000000..cdba8f1
--- /dev/null
+++ b/.github/workflows/scala-steward.yml
@@ -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.
+
+# This workflow will launch at 00:00 every Sunday
+# This file is based on docs from 
https://github.com/scala-steward-org/scala-steward-action
+on:
+  schedule:
+    - cron: '0 0 * * *'
+
+name: Scala Steward CI
+
+jobs:
+  scala-steward:
+    if: github.repository == 'apache/daffodil-vscode'
+    runs-on: ubuntu-20.04
+    name: Launch Scala Steward
+    steps:
+      - name: Launch Scala Steward
+        uses: scala-steward-org/[email protected]
+        with:
+          github-token: ${{ secrets.GITHUB_TOKEN }}
+          github-repository: apache/daffodil-vscode

Reply via email to