Skip to content

Commit

Permalink
Merge pull request #1179 from 64/workflows
Browse files Browse the repository at this point in the history
ci: don't run hooks on push
  • Loading branch information
Geertiebear authored Oct 25, 2024
2 parents 5f6579a + 4c46761 commit 1a53ea2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/abidiff.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
name: Check for ABI breaks

on:
push:
branches-ignore:
- abi-break
pull_request:
branches-ignore:
- abi-break
merge_group:
branches-ignore:
- abi-break

jobs:
run-abidiff:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Continuous Integration

on: [push, pull_request, merge_group]
on: [pull_request, merge_group]

jobs:
build-mlibc:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/detect-bad-ifs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Detect ifdef/defined (mis)use

on: [push, pull_request, merge_group]
on: [pull_request, merge_group]

jobs:
find-misuse:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/detect-missing-mlibc-config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Detect missing mlibc-config.h

on: [push, pull_request, merge_group]
on: [pull_request, merge_group]

jobs:
find-misuse:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-libc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Rust libc bindings

on: [push, pull_request, merge_group]
on: [pull_request, merge_group]

jobs:
check-bindings:
Expand Down

0 comments on commit 1a53ea2

Please sign in to comment.