Add bump github action
This commit is contained in:
15
.github/workflows/bump.yml
vendored
Normal file
15
.github/workflows/bump.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
name: 'Automatic version updates'
|
||||
on:
|
||||
schedule:
|
||||
# minute hour dom month dow (UTC)
|
||||
- cron: '0 10 * * *'
|
||||
jobs:
|
||||
version_update:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: wader/bump@master
|
||||
with:
|
||||
bump_files: Dockerfile
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Reference in New Issue
Block a user