Skip to content

Commit

Permalink
Update kicad.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelburgos committed May 11, 2024
1 parent d4df8e5 commit f0eda47
Showing 1 changed file with 75 additions and 4 deletions.
79 changes: 75 additions & 4 deletions .github/workflows/kicad.yml
Expand Up @@ -30,9 +30,80 @@ jobs:
schema: 'Hardware/PCBs/Open Beam Interface/Open Beam Interface.kicad_sch'
# optional - PCB design file
board: 'Hardware/PCBs/Open Beam Interface/Open Beam Interface.kicad_pcb'
- name: upload results
uses: actions/upload-artifact@v2
- uses: EndBug/add-and-commit@v9 # You can change this to use a specific version.
with:
name: output
path: 'Hardware/PCBs/Open Beam Interface/output'
# The arguments for the `git add` command (see the paragraph below for more info)
# Default: '.'
# add: 'src'

# The name of the user that will be displayed as the author of the commit.
# Default: depends on the default_author input
author_name: Author Name

# The email of the user that will be displayed as the author of the commit.
# Default: depends on the default_author input
author_email: mail@example.com

# Additional arguments for the git commit command. The --message argument is already set by the message input.
# Default: ''
# commit: --signoff

# The name of the custom committer you want to use, if different from the author of the commit.
# Default: the name of the author (set with either author_name or default_author)
committer_name: Committer Name

# The email of the custom committer you want to use, if different from the author of the commit.
# Default: the email of the author (set with either author_email or default_author)
committer_email: mail@example.com

# The local path to the directory where your repository is located. You should use actions/checkout first to set it up.
# Default: '.'
# cwd: './path/to/the/repo'

# Determines the way the action fills missing author name and email. Three options are available:
# - github_actor -> UserName <UserName@users.noreply.github.com>
# - user_info -> Your Display Name <your-actual@email.com>
# - github_actions -> github-actions <email associated with the github logo>
# Default: github_actor
default_author: github_actor

# Arguments for the git fetch command. If set to false, the action won't fetch the repo.
# For more info as to why fetching is usually recommended, please see the "Performance on large repos" FAQ.
# Default: --tags --force
fetch: false

# The message for the commit.
# Default: 'Commit from GitHub Actions (name of the workflow)'
message: 'Automatically committed'

# If this input is set, the action will push the commit to a new branch with this name.
# Default: ''
# new_branch: custom-new-branch

# The way the action should handle pathspec errors from the add and remove commands. Three options are available:
# - ignore -> errors will be logged but the step won't fail
# - exitImmediately -> the action will stop right away, and the step will fail
# - exitAtEnd -> the action will go on, every pathspec error will be logged at the end, the step will fail.
# Default: ignore
pathspec_error_handling: ignore

# Arguments for the git pull command. By default, the action does not pull.
# Default: ''
# pull: '--rebase --autostash ...'

# Whether to push the commit and, if any, its tags to the repo. It can also be used to set the git push arguments (see the paragraph below for more info)
# Default: true
push: true

# The arguments for the `git rm` command (see the paragraph below for more info)
# Default: ''
# remove: './dir/old_file.js'

# Arguments for the git tag command (the tag name always needs to be the first word not preceded by an hyphen)
# Default: ''
# tag: 'v1.0.0 --force'

# Arguments for the git push --tags command (any additional argument will be added after --tags)
# Default: ''
# tag_push: '--force'

0 comments on commit f0eda47

Please sign in to comment.