diff --git a/.github/workflows/auto_newversion.yml b/.github/workflows/auto_newversion.yml new file mode 100644 index 0000000..17574b3 --- /dev/null +++ b/.github/workflows/auto_newversion.yml @@ -0,0 +1,19 @@ +name: Auto Update Version + +on: + workflow_dispatch: + +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - uses: jitterbit/get-changed-files@v1 + - run: | + for changed_file in ${{ steps.files.outputs.all }}; do + echo "Do something with this ${changed_file}." + done