Skip to content

Commit

Permalink
add tagbot and register new version
Browse files Browse the repository at this point in the history
  • Loading branch information
atbug committed Jun 16, 2022
1 parent 6334e2d commit 6a317e2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: TagBot
on:
issue_comment:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: 3
permissions:
contents: write
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "HopTB"
uuid = "3804c90a-d6ae-434d-aed1-763ec3185202"
version = "0.8.0"
version = "0.8.1"

[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Expand Down

4 comments on commit 6a317e2

@atbug
Copy link
Member Author

@atbug atbug commented on 6a317e2 Jun 16, 2022

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.

Error while trying to register: Register Failed
@atbug, it looks like you are not a publicly listed member/owner in the parent organization (HopTB).
If you are a member/owner, you will need to change your membership to public. See GitHub Help

@atbug
Copy link
Member Author

@atbug atbug commented on 6a317e2 Jun 16, 2022

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/62440

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.8.1 -m "<description of version>" 6a317e290a5bbbee093e1f11e4dda48e89253c74
git push origin v0.8.1

Please sign in to comment.