Skip to content

Commit

Permalink
workflows: run on push & pull_request except tags
Browse files Browse the repository at this point in the history
  • Loading branch information
chanshing committed Apr 24, 2023
1 parent 5249799 commit afcd86a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cwa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: cwa

on:
push:
branches: [ master ]
branches:
- '**'
pull_request:
branches: [ master ]

jobs:
cwa:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

name: flake8

on: [push, pull_request]
on:
push:
branches:
- '**'
pull_request:

jobs:
flake8:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gt3x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: gt3x

on:
push:
branches: [ master ]
branches:
- '**'
pull_request:
branches: [ master ]

jobs:
gt3x:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name: install

on:
push:
branches: [ master ]
branches:
- '**'
pull_request:
branches: [ master ]

jobs:
install:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/junit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: junit

on:
push:
branches: [ master ]
branches:
- '**'
pull_request:
branches: [ master ]

jobs:
junit:
Expand Down

0 comments on commit afcd86a

Please sign in to comment.