You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2020/10/23 13:53:19 UTC

[camel-k-runtime] branch master updated: build(actions): cancel stale workflow runs

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/master by this push:
     new 107a970  build(actions): cancel stale workflow runs
107a970 is described below

commit 107a97001b31f154a8e16bd219de6c435cc46c8c
Author: Luca Burgazzoli <lb...@gmail.com>
AuthorDate: Fri Oct 23 14:38:12 2020 +0200

    build(actions): cancel stale workflow runs
---
 .github/workflows/ci-build-cleanup.yaml | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/.github/workflows/ci-build-cleanup.yaml b/.github/workflows/ci-build-cleanup.yaml
new file mode 100644
index 0000000..650a010
--- /dev/null
+++ b/.github/workflows/ci-build-cleanup.yaml
@@ -0,0 +1,33 @@
+#
+# 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: Cancel Stale Workflow Runs
+on:
+  schedule:
+    # Run every 30 minutes
+    - cron:  '*/30 * * * *'
+
+jobs:
+  cancel-runs:
+    if: github.repository == 'apache/camel-k-runtime'
+    runs-on: ubuntu-latest
+    steps:
+      - name: Cancel Previous Runs
+        uses: n1hility/cancel-previous-runs@v2
+        with:
+          token: ${{ secrets.GITHUB_TOKEN }}
+          workflow: ci-build.yaml