From f0eda47993a5154d2fa07958602938bcc3458764 Mon Sep 17 00:00:00 2001 From: isabelburgos Date: Fri, 10 May 2024 18:01:40 -0700 Subject: [PATCH] Update kicad.yml --- .github/workflows/kicad.yml | 79 +++++++++++++++++++++++++++++++++++-- 1 file changed, 75 insertions(+), 4 deletions(-) diff --git a/.github/workflows/kicad.yml b/.github/workflows/kicad.yml index ea6c3bd..1aff766 100644 --- a/.github/workflows/kicad.yml +++ b/.github/workflows/kicad.yml @@ -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 + # - user_info -> Your Display Name + # - github_actions -> github-actions + # 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'