8000 do not hash BUILTINSXP · randy3k/collections@1c8d8f5 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

TagBot

TagBot #2471

Workflow file for this run

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
with:
fetch-depth: 0
- name: check and publish release
run: |
tagbot::publish_release()
shell: Rscript {0}
env:
GITHUB_PAT: ${{secrets.GITHUB_TOKEN}}
0