Skip to content

Commit

Permalink
.github/workflows: Remove push trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
e10harvey committed Jun 5, 2023
1 parent 6c134af commit d730ed7
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/continuous-integration-workflow-32bit.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: github-Linux-32bit
on: [push, pull_request]

on:
pull_request:
paths-ignore:
- '**/*.md'
types: [ opened, reopened, synchronize ]

concurrency:
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/continuous-integration-workflow-hpx.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: github-Linux-hpx

on: [push, pull_request]
on:
pull_request:
paths-ignore:
- '**/*.md'
types: [ opened, reopened, synchronize ]

concurrency:
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: github-Linux
on: [push, pull_request]

on:
pull_request:
paths-ignore:
- '**/*.md'
types: [ opened, reopened, synchronize ]

concurrency:
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: github-OSX

on: [push, pull_request]
on:
pull_request:
paths-ignore:
- '**/*.md'
types: [ opened, reopened, synchronize ]

concurrency:
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/performance-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
branches:
- develop
pull_request:
paths-ignore:
- '**/*.md'
types: [ opened, reopened, synchronize ]

jobs:
CI:
Expand Down

0 comments on commit d730ed7

Please sign in to comment.