Skip to content

Commit

Permalink
Create tagbot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aviks authored Jul 31, 2020
1 parent 74ef873 commit 7884b85
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/tagbot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: TagBot
on:
schedule:
- cron: 09 12 * * *
workflow_dispatch:
jobs:
TagBot:
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

2 comments on commit 7884b85

@scottbigbrain
Copy link
Contributor

Choose a reason for hiding this comment

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

What is the point of this commit?

@aviks
Copy link
Owner Author

@aviks aviks commented on 7884b85 Oct 6, 2020

Choose a reason for hiding this comment

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

This run a daily process called the Tagbot. When we register a new version of this package in the General Registry, Tagbot automaticaly creates a Git Tag in this repo that represents that release. Some more information about tagbot is here: https://github.com/JuliaRegistries/TagBot

Please sign in to comment.