Use list instead of array for branch names
This is the officially supported method
This commit is contained in:
parent
71a5379bda
commit
b0d25de54a
4
.github/workflows/clippy.yml
vendored
4
.github/workflows/clippy.yml
vendored
@ -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
.github/workflows/clippy_bors.yml
vendored
4
.github/workflows/clippy_bors.yml
vendored
@ -2,7 +2,9 @@ name: Clippy Test (bors)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [auto, try]
|
||||
branches:
|
||||
- auto
|
||||
- try
|
||||
|
||||
env:
|
||||
RUST_BACKTRACE: 1
|
||||
|
4
.github/workflows/clippy_dev.yml
vendored
4
.github/workflows/clippy_dev.yml
vendored
@ -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
.github/workflows/deploy.yml
vendored
6
.github/workflows/deploy.yml
vendored
@ -2,9 +2,11 @@ name: Deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: master
|
||||
branches:
|
||||
- master
|
||||
release:
|
||||
types: [created]
|
||||
types:
|
||||
- created
|
||||
|
||||
env:
|
||||
TARGET_BRANCH: 'gh-pages'
|
||||
|
4
.github/workflows/remark.yml
vendored
4
.github/workflows/remark.yml
vendored
@ -2,7 +2,9 @@ name: Remark
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [auto, try]
|
||||
branches:
|
||||
- auto
|
||||
- try
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.md'
|
||||
|
Loading…
Reference in New Issue
Block a user