You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/01/12 10:27:06 UTC

[camel-quarkus] branch master updated: Remove changelog generation workflow

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 29e7c1f  Remove changelog generation workflow
29e7c1f is described below

commit 29e7c1f977d0f09f09fee7877f978343cfa187f5
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Jan 12 08:04:26 2021 +0000

    Remove changelog generation workflow
    
    Fixes #2119
---
 .github/workflows/automatic-changelog-update.yml | 56 ------------------------
 1 file changed, 56 deletions(-)

diff --git a/.github/workflows/automatic-changelog-update.yml b/.github/workflows/automatic-changelog-update.yml
deleted file mode 100644
index 6c1bd26..0000000
--- a/.github/workflows/automatic-changelog-update.yml
+++ /dev/null
@@ -1,56 +0,0 @@
-#
-# 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: Changelog
-
-on:
-  schedule:
-    # Run at 3 during night
-    - cron:  '0 3 * * *'
-  workflow_dispatch:
-
-jobs:
-  generate_changelog:
-    if: github.repository == 'apache/camel-quarkus'
-    runs-on: ubuntu-latest
-    name: Generate changelog for master branch
-    steps:
-      - uses: actions/checkout@v1
-
-      - name: Generate changelog
-        uses: charmixer/auto-changelog-action@v1.1
-        with:
-          token: ${{ secrets.GITHUB_TOKEN }}
-          exclude_labels: "duplicate,question,invalid,wontfix,build/camel-master,build/quarkus-master"
-
-      - name: Commit files
-        env:
-          CI_USER: "github-actions[bot]"
-          CI_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
-        run: |
-          git config --local user.email "$CI_EMAIL"
-          git config --local user.name "$CI_USER"
-          git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' && echo "push=1" >> $GITHUB_ENV || echo "No changes to CHANGELOG.md"
-
-      - name: Push changes
-        if: env.push == 1
-        env:
-          CI_USER: "github-actions[bot]"
-          CI_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
-          CI_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        run: |
-          git push "https://$CI_USER:$CI_TOKEN@github.com/$GITHUB_REPOSITORY.git" HEAD:master