This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch changelog in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
commit b04e21d44fa2ab95263ab21d1d41851bccb4ab72 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Feb 2 14:58:44 2021 +0100 Modified changelog action --- .github/workflows/automatic-changelog-update.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automatic-changelog-update.yml b/.github/workflows/automatic-changelog-update.yml index 00a3b59..ce54e9b 100644 --- a/.github/workflows/automatic-changelog-update.yml +++ b/.github/workflows/automatic-changelog-update.yml @@ -29,10 +29,14 @@ jobs: name: Generate changelog for master branch if: github.ref == 'refs/heads/master' && github.repository == 'apache/camel-k-runtime' steps: - - uses: actions/checkout@v1 + - name: "Checkout camel-kafka-connector" + uses: actions/checkout@v2 + with: + persist-credentials: false + submodules: recursive - name: Generate changelog - uses: charmixer/[email protected] + uses: ./.github/actions/changelog with: token: ${{ secrets.GITHUB_TOKEN }}
