mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-05 00:03:08 +00:00
15 lines
361 B
YAML
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
|