From 2034cc967371dc7fe6a883ecc65cc40e8cf740dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B8=A2=E4=BD=8E=E5=90=B8?= Date: Wed, 31 Aug 2022 05:58:22 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20=E6=B8=AC=E8=A9=A6=E8=87=AA?= =?UTF-8?q?=E5=8B=95=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC=E8=99=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto_newversion.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/auto_newversion.yml 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