Skip to content

Commit

Permalink
CI: limit which branches get tested
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Feb 24, 2023
1 parent da32bb3 commit 827a47d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/CI.yml
@@ -1,8 +1,12 @@
name: Run tests

on:
- push
- pull_request
push:
branches:
- 'master'
- 'release-'
tags: '*'
pull_request:

concurrency:
# group by workflow and ref; the last slightly strange component ensures that for pull
Expand Down

2 comments on commit 827a47d

@fingolfin
Copy link
Member Author

Choose a reason for hiding this comment

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

@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/78393

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 v0.17.0 -m "<description of version>" 827a47dae17f849407608e9a043142b49ee9ce8c
git push origin v0.17.0

Please sign in to comment.