1
1
mirror of https://github.com/wader/fq.git synced 2024-11-23 00:57:15 +03:00

github: bump: Checkout with bump token so it's used when push

This commit is contained in:
Mattias Wadman 2021-09-08 18:30:46 +02:00
parent 684193afdb
commit 8e3d9d812f

View File

@ -1,8 +1,8 @@
name: 'Automatic version updates'
name: "Automatic version updates"
on:
schedule:
# minute hour dom month dow (UTC)
- cron: '0 16 * * *'
- cron: "0 16 * * *"
# enable manual trigger of version updates
workflow_dispatch:
jobs:
@ -10,6 +10,9 @@ jobs:
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 }}