From 124348a414d4745e2ca9b5f9125c9635c26b826a Mon Sep 17 00:00:00 2001 From: velramiir Date: Wed, 27 Sep 2023 17:07:12 +0200 Subject: [PATCH] chore: checkout .github for config file --- .github/workflows/generate-changelog.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate-changelog.yml b/.github/workflows/generate-changelog.yml index 5e2f60a..a9e5200 100644 --- a/.github/workflows/generate-changelog.yml +++ b/.github/workflows/generate-changelog.yml @@ -12,6 +12,14 @@ jobs: with: ref: "main" + - name: Check Out .github Repository + uses: actions/checkout@v3 + with: + repository: "dot-base/.github" + ref: "main" + path: "actions-repo" + token: ${{ secrets.GH_BOT_PAT }} + - name: Install conventional-changelog run: | npm i conventional-changelog-conventionalcommits @@ -26,7 +34,7 @@ jobs: skip-version-file: "true" skip-commit: "true" git-push: "false" - config-file-path: "dot-base/.github/.github/changelog.config.js@main" + config-file-path: "actions-repo/.github/changelog.config.js" create-summary: true - name: Print Changelog Output Tag