Skip to content

Commit

Permalink
ci: deduplicate workflows runs
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroTroller committed Feb 26, 2024
1 parent 4301776 commit d40fd01
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/bc.yml → .github/workflows/bc.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
on: [push, pull_request]
---
name: Roave

jobs:
roave_bc_check:
name: BC Check
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: Pull-Request

on: pull_request

bc:
uses: ./.github/workflows/bc.yaml
10 changes: 10 additions & 0 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Pull-Request

on:
push:
branches:
- master

bc:
uses: ./.github/workflows/bc.yaml

0 comments on commit d40fd01

Please sign in to comment.