-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix generation of BIDS changelog #1835
Closed
Closed
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
c8330ec
use default remote_docker_version
sappelhoff 91bc3f9
run changelog gen and lint even if not Merge commit
sappelhoff df40ab8
TMP: to be reverted. testing gen and lint on non-master
sappelhoff 6c475ec
try new token
sappelhoff 0affa6b
check which version we are running
sappelhoff a57c6e8
no docker, upgrade version
sappelhoff 7c48ed9
try old token
sappelhoff bca0184
new token (again), different scope, and implicit
sappelhoff c4d2976
try explicit again
sappelhoff e5f74b3
try with fine grained token
sappelhoff a871f64
try with new circleci setting
sappelhoff File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,37 +98,31 @@ jobs: | |
docker: | ||
- image: ferrarimarco/github-changelog-generator:1.14.3 | ||
steps: | ||
- setup_remote_docker: | ||
version: 18.06.0-ce | ||
- setup_remote_docker | ||
# checkout code to default ~/project | ||
- checkout | ||
- run: | ||
name: Build changelog | ||
# $CHANGE_TOKEN is generated via the GitHub web UI, and then securely stored within CircleCI web UI | ||
command: | | ||
mkdir ~/changelog_build | ||
git status | ||
if (git log -1 --pretty=%s | grep Merge*) && (! git log -1 --pretty=%b | grep REL:) ; then | ||
github_changelog_generator \ | ||
--exclude-tags-regex "^(?!v).*?$" \ | ||
--user bids-standard \ | ||
--project bids-specification \ | ||
--token ${CHANGE_TOKEN} \ | ||
--output ~/changelog_build/CHANGES.md \ | ||
--base ~/project/src/pregh-changes.md \ | ||
--header-label "# Changelog" \ | ||
--release-branch master \ | ||
--no-issues \ | ||
--no-filter-by-milestone \ | ||
--no-compare-link \ | ||
--pr-label "" \ | ||
--enhancement-label "" \ | ||
--bugs-label "" \ | ||
--exclude-labels "exclude-from-changelog" | ||
cat ~/changelog_build/CHANGES.md | ||
else | ||
echo "Commit or Release, do nothing" | ||
fi | ||
github_changelog_generator \ | ||
--exclude-tags-regex "^(?!v).*?$" \ | ||
--user bids-standard \ | ||
--project bids-specification \ | ||
--token ${CHANGE_TOKEN} \ | ||
--output ~/changelog_build/CHANGES.md \ | ||
--base ~/project/src/pregh-changes.md \ | ||
--header-label "# Changelog" \ | ||
--release-branch master \ | ||
--no-issues \ | ||
--no-filter-by-milestone \ | ||
--no-compare-link \ | ||
--pr-label "" \ | ||
--enhancement-label "" \ | ||
--bugs-label "" \ | ||
--exclude-labels "exclude-from-changelog" | ||
cat ~/changelog_build/CHANGES.md | ||
- persist_to_workspace: | ||
# raw generated changelog in ~/changelog_build/CHANGES.md | ||
root: ~/. | ||
|
@@ -152,24 +146,19 @@ jobs: | |
name: remark on autogenerated CHANGES.md | ||
# format changelog, then use sed to change * to -, then lint changelog | ||
command: | | ||
git status | ||
if (git log -1 --pretty=%s | grep Merge*) && (! git log -1 --pretty=%b | grep REL:) ; then | ||
head -n 100 ~/changelog_build/CHANGES.md | ||
npx remark-cli ~/changelog_build/CHANGES.md --rc-path ~/project/.remarkrc --output ~/changelog_build/CHANGES.md | ||
head -n 100 ~/changelog_build/CHANGES.md | ||
sed -i 's/* /- /' ~/changelog_build/CHANGES.md | ||
head -n 100 ~/changelog_build/CHANGES.md | ||
npx remark-cli ~/changelog_build/CHANGES.md --frail --rc-path ~/project/.remarkrc | ||
else | ||
echo "Commit or Release, do nothing" | ||
fi | ||
head -n 100 ~/changelog_build/CHANGES.md | ||
npx remark-cli ~/changelog_build/CHANGES.md --rc-path ~/project/.remarkrc --output ~/changelog_build/CHANGES.md | ||
head -n 100 ~/changelog_build/CHANGES.md | ||
sed -i 's/* /- /' ~/changelog_build/CHANGES.md | ||
head -n 100 ~/changelog_build/CHANGES.md | ||
npx remark-cli ~/changelog_build/CHANGES.md --frail --rc-path ~/project/.remarkrc | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
- persist_to_workspace: | ||
# linted and fixed changelog in ~/changelog_build/CHANGES.md | ||
root: ~/. | ||
paths: | ||
- changelog_build | ||
|
||
# Push built changelog to repo | ||
# Push built changelog to repo (only if if last commit was a "Merge commit" on master) | ||
commit_generated_changelog: | ||
docker: | ||
- image: cimg/base:stable | ||
|
@@ -195,7 +184,7 @@ jobs: | |
git commit -m "[DOC] Auto-generate changelog entry for PR ${PR_number}" | ||
git push https://${CHANGE_TOKEN}@github.com/bids-standard/bids-specification.git master | ||
else | ||
echo "Commit or Release, do nothing" | ||
echo "Did not detect a "Merge commit" to master, or detected a Release ... doing nothing." | ||
fi | ||
|
||
workflows: | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we could start running the changelog generation and linting on every commit to master ... and then commit this as previously, only on "Merge commits" to master.
This would allow us to earlier find issues with generation and linting.