Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Cimos committed Aug 18, 2024
1 parent 604908a commit 486f904
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/datapack.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
name: Generate Datapack
on: [push, pull_request]
on:
push:
branches:
- '**'
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

steps:
- name: Checkout (only last commit)
uses: actions/checkout@v4
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/panelization.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
name: Generate PCB panel datapack
on: [push, pull_request]
on:
push:
branches:
- '**'
pull_request:
branches:
- master

jobs:
KiKit:
name: Test Build
runs-on: ubuntu-latest
container: ghcr.io/inti-cmnb/kicad8_auto_full:latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

steps:
- name: Checkout (only last commit)
Expand Down

0 comments on commit 486f904

Please sign in to comment.