From ebe4c7fda32086c62662b23c7fb5f679f178f7bd Mon Sep 17 00:00:00 2001 From: Dani Perez Date: Mon, 14 Aug 2023 20:39:31 +0200 Subject: [PATCH] [wip] version checks --- .github/workflows/check-vale-update.yml | 36 +++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/check-vale-update.yml diff --git a/.github/workflows/check-vale-update.yml b/.github/workflows/check-vale-update.yml new file mode 100644 index 0000000..279150b --- /dev/null +++ b/.github/workflows/check-vale-update.yml @@ -0,0 +1,36 @@ +name: Schedule Commit + +on: + # schedule: + # - cron: '0 0 * * *' # This schedule runs every day at midnight UTC + pull-request: + +jobs: + commit: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Check Vale's last version + run: | + VALE_LAST_VERSION=$(gh release list -l 1 -R errata-ai/vale) + VALE_PYTHON_LAST_VERSION=$(cat pyproject.toml | grep "^version =" | cut -d "\"" -f 2 | sed "s/\.[^.]*$//" | cut -d "." -f -3) + echo "Current Vale version : $VALE_LAST_VERSION" + echo "Current Python Vale version : $VALE_PYTHON_LAST_VERSION" + + if "$VALE_LAST_VERSION" != "$VALE_PYTHON_LAST_VERSION"; then + echo "Versions differ, updating." + echo "VALE_LAST_VERSION=$VALE_LAST_VERSION" >> $GITHUB_OUTPUT + else + echo "Same versions 🎉" + gh run cancel ${{ github.run_id }} + gh run watch ${{ github.run_id }} + fi + + # - name: Version bump + # if: ${{ success() }} + # run: | + # # Commit version bump (change pyproject.yaml, CHANGELOG and README.md): + # # VALE_LAST_VERSION=${{ steps.vars.outputs.VALE_LAST_VERSION }}