1
1
mirror of https://github.com/wader/fq.git synced 2024-11-27 14:14:58 +03:00
fq/.github/workflows/bump.yml
2021-09-12 13:08:52 +02:00

16 lines
384 B
YAML

name: 'Automatic version updates'
on:
schedule:
# minute hour dom month dow (UTC)
- cron: '0 16 * * *'
# enable manual trigger of version updates
workflow_dispatch:
jobs:
version_update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: wader/bump/action/go@master
env:
GITHUB_TOKEN: ${{ secrets.BUMP_TOKEN }}