You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/09/07 15:27:34 UTC

[camel-k-runtime] branch master updated: Changelog updater: run every hour (#464)

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

acosentino 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 c7453a6  Changelog updater: run every hour (#464)
c7453a6 is described below

commit c7453a68c96466327c5f5e4e507736f22d0b8764
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Sep 7 17:27:24 2020 +0200

    Changelog updater: run every hour (#464)
---
 .github/workflows/automatic-changelog-update.yml | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/automatic-changelog-update.yml b/.github/workflows/automatic-changelog-update.yml
index 9a1b116..e43c01c 100644
--- a/.github/workflows/automatic-changelog-update.yml
+++ b/.github/workflows/automatic-changelog-update.yml
@@ -18,14 +18,9 @@
 name: Changelog
 
 on:
-  pull_request:
-    types: [closed]
-
-  release:
-    types: [published]
-
-  issues:
-    types: [closed, edited]
+  schedule:
+    # Run every hour
+    - cron:  '0 * * * *'
 
 jobs:
   generate_changelog: