Check latest Lens version #1681
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: Check latest Lens version | |
on: | |
schedule: | |
- cron: '15 */6 * * *' | |
workflow_dispatch: | |
jobs: | |
version_check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT }} | |
- name: Get the latest version of Lens | |
run: | | |
curl -s https://api.github.com/repos/lensapp/lens/releases | jq -r '[.[] | select(.prerelease == false)][0] | .tag_name[1:]' > version | |
echo "LENS_VERSION=$(cat version)" >> $GITHUB_ENV | |
- name: Add & Commit | |
uses: EndBug/add-and-commit@v9.1.1 | |
with: | |
message: 'Version updated to: ${{ env.LENS_VERSION }}' |