1
1
mirror of https://github.com/wader/fq.git synced 2024-10-04 15:38:17 +03:00
fq/.github/workflows/bump.yml

19 lines
494 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
with:
# to allow push changes of workflow config
token: ${{ secrets.BUMP_TOKEN }}
- uses: wader/bump/action/go@master
env:
GITHUB_TOKEN: ${{ secrets.BUMP_TOKEN }}