Skip to content

Commit

Permalink
Fix TagBot (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-luke authored Feb 2, 2024
1 parent ad9e42c commit 2b58842
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ on:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: 3
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AuditoryStimuli"
uuid = "8341a549-d843-5d3b-924f-10e41641b3ea"
authors = ["Robert Luke <[email protected]>"]
version = "0.1.1"
version = "0.1.2"

[deps]
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2"
Expand Down

2 comments on commit 2b58842

@rob-luke
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

Maintenance

  • Attempt to fix TagBot automation

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

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 v0.1.2 -m "<description of version>" 2b588423e928c3d9a2b39f820a34486388336785
git push origin v0.1.2

Please sign in to comment.