Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: trunk-io/trunk-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.13
Choose a base ref
...
head repository: trunk-io/trunk-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.14
Choose a head ref
  • 2 commits
  • 2 files changed
  • 3 contributors

Commits on Apr 29, 2024

  1. Upgrade trunk to 1.22.0 (#237)

    [![Trunk](https://static.trunk.io/assets/trunk_action_upgrade_banner.png)](https://trunk.io)
    
    cli upgraded: 1.21.0 → 1.22.0
    
    1 plugin was upgraded:
    
    - trunk-io/plugins v1.4.5 → v1.5.0
    
    This PR was generated by the [Trunk Action]. For more info, see our
    [docs] or reach out on [Slack].
    
    [Trunk Action]: https://github.com/trunk-io/trunk-action
    [docs]: https://docs.trunk.io
    [Slack]: https://slack.trunk.io/
    
    Co-authored-by: TylerJang27 <42743566+TylerJang27@users.noreply.github.com>
    trunk-open-pr-bot[bot] and TylerJang27 authored Apr 29, 2024
    Copy the full SHA
    246fbe9 View commit details

Commits on May 8, 2024

  1. feat: add option for Signed-Off-By line in upgrade action (#238)

    Adds support for adding a `Signed-Off-By` line to commits created by the
    upgrade action, as requested
    [here](trunk-io/plugins#764).
    
    Tested in this repo, you can see the commit
    [here](cc7d39d).
    puzzler7 authored May 8, 2024
    Copy the full SHA
    bd68632 View commit details
Showing with 8 additions and 2 deletions.
  1. +2 −2 .trunk/trunk.yaml
  2. +6 −0 upgrade/action.yaml
4 changes: 2 additions & 2 deletions .trunk/trunk.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: 0.1

cli:
version: 1.21.0
version: 1.22.0

plugins:
sources:
- id: trunk
ref: v1.4.5
ref: v1.5.0
uri: https://github.com/trunk-io/plugins
- id: configs
ref: v1.0.4
6 changes: 6 additions & 0 deletions upgrade/action.yaml
Original file line number Diff line number Diff line change
@@ -57,6 +57,11 @@ inputs:
required: false
default: false

signoff:
description: A boolean to add a Signed-off-by line to the commit message
required: false
default: false

runs:
using: composite
steps:
@@ -122,3 +127,4 @@ runs:
delete-branch: true
reviewers: ${{ inputs.reviewers }}
token: ${{ inputs.github-token }}
signoff: ${{ inputs.signoff }}