Skip to content

Commit

Permalink
add tagbot
Browse files Browse the repository at this point in the history
  • Loading branch information
randy3k committed Sep 13, 2020
1 parent b80d66f commit a731dc9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tagbot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: tagbot

on:
schedule:
# every six hour
- cron: 0 */6 * * *

jobs:
publish-github-release:
runs-on: ubuntu-latest
container: rtagbot/tagbot:latest
steps:
- uses: actions/checkout@v2
- name: fetch all tags and branches
run: git fetch --prune --unshallow --tags
- name: check and publish release
run: |
tagbot::publish_release()
shell: Rscript {0}
env:
GITHUB_PAT: ${{secrets.GITHUB_TOKEN}}

0 comments on commit a731dc9

Please sign in to comment.