Skip to content

Commit

Permalink
Merge pull request #290 from beorostica/patch-ci-compat
Browse files Browse the repository at this point in the history
Patch CI for compat
  • Loading branch information
cncastillo authored Jan 15, 2024
2 parents 8d82a5b + 86afa87 commit 88853c9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ name: CompatHelper
on:
schedule:
- cron: 0 0 * * *
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs=["", "KomaMRICore", "KomaMRIFiles", "KomaMRIPlots"])'
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs=["", "KomaMRIBase", "KomaMRICore", "KomaMRIFiles", "KomaMRIPlots"])'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

6 comments on commit 88853c9

@beorostica
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir=KomaMRICore

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/98925

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a KomaMRICore-v0.8.0 -m "<description of version>" 88853c9f659d50a6c90a33f9e444416cd139505e
git push origin KomaMRICore-v0.8.0

@beorostica
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir=KomaMRIPlots

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/98926

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a KomaMRIPlots-v0.8.0 -m "<description of version>" 88853c9f659d50a6c90a33f9e444416cd139505e
git push origin KomaMRIPlots-v0.8.0

@beorostica
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register subdir=KomaMRIFiles

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/98927

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a KomaMRIFiles-v0.8.0 -m "<description of version>" 88853c9f659d50a6c90a33f9e444416cd139505e
git push origin KomaMRIFiles-v0.8.0

Also, note the warning: This looks like a new registration that registers version 0.8.0.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.