-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the result of running `./PCB-workflows/tools/setup-project-repo.sh PCB/Reader.kicad_pro`
- Loading branch information
1 parent
79a6266
commit 481831a
Showing
4 changed files
with
69 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Mark kicad files as text, so git can normalize line endings | ||
*.kicad_pro text=auto | ||
*.kicad_pcb text=auto | ||
*.kicad_sch text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This workflow handles all kinds of pushes. What happens exactly is | ||
# decided by the generic workflow that we delegate to. | ||
name: Workflow | ||
|
||
on: | ||
push: | ||
tags: | ||
- '**' # Use a double *, to also match / | ||
branches: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
workflow: | ||
uses: 3devo/PCB-workflows/.github/workflows/dispatcher.yml@76543de1fd7ac36848740f744b9913219fb9ed00 | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# For PCBs designed using KiCad: http://www.kicad-pcb.org/ | ||
# Format documentation: http://kicad-pcb.org/help/file-formats/ | ||
|
||
# Temporary files | ||
*.000 | ||
*.bak | ||
*.bck | ||
*.kicad_pcb-bak | ||
*.kicad_sch-bak | ||
*.kicad_pro-bak | ||
*.kicad_prl | ||
*.sch-bak | ||
*~ | ||
_autosave-* | ||
*.tmp | ||
*-save.pro | ||
*-save.kicad_sch | ||
*-save.kicad_pro | ||
*-save.kicad_pcb | ||
fp-info-cache | ||
|
||
# Netlist files (exported from Eeschema) | ||
*.net | ||
*.xml | ||
|
||
# Autorouter files (exported from Pcbnew) | ||
*.dsn | ||
*.ses | ||
|
||
# Fabrication outputs | ||
Fabrication/ | ||
Export/ | ||
|
||
# Kicad 6 backups | ||
*-backups | ||
|
||
# kibot outptus | ||
kibot-output | ||
*-drc.txt | ||
*-erc.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters