Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix GHA after the merge #5162

Merged
merged 1 commit into from
Feb 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,9 @@ name: Clippy Test
on:
push:
# Ignore bors branches, since they are covered by `clippy_bors.yml`
branches-ignore: [auto, try]
branches-ignore:
- auto
- try
# Don't run Clippy tests, when only textfiles were modified
paths-ignore:
- 'COPYRIGHT'
4 changes: 3 additions & 1 deletion .github/workflows/clippy_bors.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,9 @@ name: Clippy Test (bors)

on:
push:
branches: [auto, try]
branches:
- auto
- try

env:
RUST_BACKTRACE: 1
4 changes: 3 additions & 1 deletion .github/workflows/clippy_dev.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,9 @@ name: Clippy Dev Test

on:
push:
branches: [auto, try]
branches:
- auto
- try
pull_request:
# Only run on paths, that get checked by the clippy_dev tool
paths:
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -2,9 +2,11 @@ name: Deploy

on:
push:
branches: master
branches:
- master
release:
types: [created]
types:
- created

env:
TARGET_BRANCH: 'gh-pages'
4 changes: 3 additions & 1 deletion .github/workflows/remark.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,9 @@ name: Remark

on:
push:
branches: [auto, try]
branches:
- auto
- try
pull_request:
paths:
- '**.md'