diff options
| author | seth <[email protected]> | 2023-07-02 12:28:11 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-07-02 19:22:19 +0000 |
| commit | 3716419055f11a80c3bab92de343075c15f84be1 (patch) | |
| tree | c449e941587721825fc964abd1feaafb1edc21bd /.github/actions/flake-update | |
| parent | c71a2c41f4e98b394bebe738d1f582c440d5337e (diff) | |
!hercules-ci -> garnix
Diffstat (limited to '.github/actions/flake-update')
| -rw-r--r-- | .github/actions/flake-update/action.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/actions/flake-update/action.yaml b/.github/actions/flake-update/action.yaml index 62f3695..2485186 100644 --- a/.github/actions/flake-update/action.yaml +++ b/.github/actions/flake-update/action.yaml @@ -1,18 +1,18 @@ name: "update flake inputs" description: "wrapper around DeterminateSystems/update-flake-lock" inputs: - update-token: - description: "github write token for creating prs" + commit-msg: required: true github-token: - description: "github read token for avoid rate limits" + description: "github read token for increasing rate limits" required: false default: "" inputs: description: "flake inputs to update" required: false default: "" - commit-msg: + update-token: + description: "github write token for creating prs" required: true runs: using: "composite" @@ -30,7 +30,7 @@ runs: token: ${{ inputs.update-token }} - name: auto-merge pull request - run: gh pr merge --auto --squash "$PR_ID" + run: gh pr merge --auto --rebase "$PR_ID" env: GITHUB_TOKEN: ${{ inputs.update-token }} PR_ID: ${{ steps.update.outputs.pull-request-number }} |
