Bump F!F Version #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bump F!F Version | |
on: | |
schedule: | |
- cron: '0 5 * * 1' # At 05:00 on Monday. | |
workflow_dispatch: | |
inputs: | |
ff-version-tag: | |
description: 'F!F version tag requested to update in your project to. It has to be after 8.0.1(including).' | |
required: true | |
default: 'latest' | |
jobs: | |
bump-ff-version: | |
uses: wearefrank/ci-cd-templates/.github/workflows/ff-version-auto-bumper.yml@b9f96c7bb6abc6e4c1e1bece97435c71485e1aac # 1.0.11 | |
secrets: | |
token: ${{ secrets.WEAREFRANK_BOT_PAT }} | |
dockerhub-username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }} | |
with: | |
ff-version-tag: ${{ github.event.inputs.ff-version-tag || 'latest' }} |