Skip to content

Commit

Permalink
ci: Move gitlint from Buildkite to GitHub Actions ci-lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tjanez committed Feb 18, 2020
1 parent f12a196 commit 5dc516e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 24 deletions.
5 changes: 0 additions & 5 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@ steps:
###########
# Lint jobs
###########
- label: Lint Git commits
command: .buildkite/scripts/lint_git.sh
plugins:
<<: *docker_plugin

- label: Lint Go node
command:
- .buildkite/go/lint.sh
Expand Down
19 changes: 0 additions & 19 deletions .buildkite/scripts/lint_git.sh

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ jobs:
env:
BASE_BRANCH: ${{ github.base_ref }}
if: github.event_name == 'pull_request'
- name: Lint git commits
run: |
make lint-git
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Lint Markdown files
run: |
make lint-md
Expand Down

0 comments on commit 5dc516e

Please sign in to comment.