chore: fix eslint warnings (#1631) #1067
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: Increment build number | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'v3/build_number.json' | |
jobs: | |
test: | |
name: Increment value test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Increment value | |
working-directory: v3 | |
run: ./increment_build_num.sh | |
- name: Commit files | |
run: | | |
git config --local user.email ${{ secrets.USER_EMAIL }} | |
git config --local user.name ${{ secrets.USER_NAME }} | |
git commit -a -m "Increment the build number" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |