feat(api): allow turning off node evacuations for rolling updates #3049
Workflow file for this run
This file contains hidden or 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: Run Gitlint | |
| on: [pull_request] | |
| jobs: | |
| gitlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install gitlint | |
| env: | |
| DEBIAN_FRONTEND: noninteractive | |
| run: | | |
| sudo apt-get -qy update | |
| sudo apt-get -qy install gitlint | |
| - name: Run gitlint | |
| shell: bash | |
| env: | |
| BEFORE_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }} | |
| AFTER_REF: ${{ github.sha }} | |
| run: | | |
| gitlint --commits ${{ env.BEFORE_REF }}..${{ env.AFTER_REF }} --config .github/workflows/.gitlint |