From 6c475ecf822810c8d56ee9d805f34ebdccc7b540 Mon Sep 17 00:00:00 2001 From: Stefan Appelhoff Date: Fri, 24 May 2024 10:04:01 +0200 Subject: [PATCH] try new token --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aabe0b1341..56f531aa14 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -103,14 +103,16 @@ jobs: - checkout - run: name: Build changelog - # $CHANGE_TOKEN is generated via the GitHub web UI, and then securely stored within CircleCI web UI + # $CHANGELOG_GITHUB_TOKEN was generated via the GitHub web UI of the `bids-maintenance` + # GitHub user (see https://github.com/settings/tokens), and was then securely stored within + # CircleCI web UI. command: | mkdir ~/changelog_build github_changelog_generator \ --exclude-tags-regex "^(?!v).*?$" \ --user bids-standard \ --project bids-specification \ - --token ${CHANGE_TOKEN} \ + --token ${CHANGELOG_GITHUB_TOKEN} \ --output ~/changelog_build/CHANGES.md \ --base ~/project/src/pregh-changes.md \ --header-label "# Changelog" \