[wip] version checks #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Schedule Commit | |
on: | |
# schedule: | |
# - cron: '0 0 * * *' # This schedule runs every day at midnight UTC | |
push: | |
env: | |
GH_TOKEN: ${{ github.token }} | |
jobs: | |
update-version: | |
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 | cut -d " " -f 1 | tr -d "v") | |
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 "Same versions 🎉" | |
gh run cancel ${{ github.run_id }} | |
gh run watch ${{ github.run_id }} | |
else | |
if [ -n "$VALE_LAST_VERSION" ]; # not-empty | |
echo "Versions differ, updating." | |
echo "VALE_LAST_VERSION=$VALE_LAST_VERSION" >> $GITHUB_OUTPUT | |
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 }} |