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