Skip to content

Commit

Permalink
Merge pull request #32 from mrufsvold/tagbot
Browse files Browse the repository at this point in the history
Tagbot and compat fix
  • Loading branch information
mrufsvold committed Jul 7, 2023
2 parents d818a3b + 99a9138 commit a3bdbd6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,28 @@ 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'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: $
ssh: $
# token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Compat = "3.42, 4"
DataStructures = "0.18.14"
PooledArrays = "1.4"
StructTypes = "1.10"
SumTypes = "0.4, 0.5"
Tables = "1"
TypedTables = "1.4"
julia = "1.6"

2 comments on commit a3bdbd6

@mrufsvold
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
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 updated: JuliaRegistries/General/87059

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 v1.1.0 -m "<description of version>" a3bdbd6388aea3aa4ae22a9e3717a70737593f05
git push origin v1.1.0

Please sign in to comment.