# ivuorinen/actions/set-git-config ## Set Git Config ### Description Sets Git configuration for actions. ### Inputs | name | description | required | default | |--------------|----------------------------------------|----------|-----------------------------| | `token` |
GitHub token.
| `false` | `${{ github.token }}` | | `username` |GitHub username for commits.
| `false` | `github-actions` | | `email` |GitHub email for commits.
| `false` | `github-actions@github.com` | | `is_fiximus` |Whether to use the Fiximus bot.
| `false` | `false` | ### Outputs | name | description | |--------------|----------------------------------------| | `token` |GitHub token.
| | `username` |GitHub username for commits.
| | `email` |GitHub email for commits.
| | `is_fiximus` |Whether to use the Fiximus bot.
| ### Runs This action is a `composite` action. ### Usage ```yaml - uses: ivuorinen/actions/set-git-config@main with: token: # GitHub token. # # Required: false # Default: ${{ github.token }} username: # GitHub username for commits. # # Required: false # Default: github-actions email: # GitHub email for commits. # # Required: false # Default: github-actions@github.com is_fiximus: # Whether to use the Fiximus bot. # # Required: false # Default: false ```