| 12345678910111213141516 |
- name: Elvis Linter
- on: [pull_request]
- jobs:
- build:
- runs-on: ubuntu-20.04
- steps:
- - uses: actions/checkout@v2
- - name: Set git token
- if: endsWith(github.repository, 'enterprise')
- run: |
- echo "https://ci%40emqx.io:${{ secrets.CI_GIT_TOKEN }}@github.com" > $HOME/.git-credentials
- git config --global credential.helper store
- - run: |
- ./scripts/elvis-check.sh $GITHUB_BASE_REF
|