Files
windmill/.github/workflows/change-versions.yml
Ruben Fiszel 2e132878e4 first commit
2022-05-05 04:25:58 +02:00

15 lines
361 B
YAML

name: Change versions
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- "version.txt"
jobs:
change_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Change versions
run: ./.github/change-versions.sh "$(cat version.txt)"
- uses: stefanzweifel/git-auto-commit-action@v4