Automatic version bumping #3747
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: Automatic version bumping | |
on: | |
schedule: | |
- cron: '3 */6 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
git config user.name "BIG UGLY FROGMINER" | |
git config user.email [email protected] | |
./update-kernel-versions.sh | |
changes=$(cat kernel_updates) | |
if [ -n "$changes" ]; then | |
git add PKGBUILD linux-tkg-config/prepare | |
git commit --author="Adel KARA SLIMANE <[email protected]>" -m "version bumps:$changes" | |
git push | |
fi |