Skip to content

build(deps): bump actions/checkout from 6.0.2 to 6.0.3 #1484

build(deps): bump actions/checkout from 6.0.2 to 6.0.3

build(deps): bump actions/checkout from 6.0.2 to 6.0.3 #1484

Workflow file for this run

---
name: Backport merged pull request
on: # yamllint disable-line rule:truthy
pull_request_target:
types: [closed, labeled]
jobs:
backport:
name: Backport pull request
runs-on: ubuntu-slim
# Don't run on closed unmerged pull requests
if: github.event.pull_request.merged
steps:
- name: Get Github App Token
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
id: app-token
with:
client-id: ${{ vars.FFMUC_BOT_CLIENT_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- name: Clone Firmware
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
# Token for git actions, e.g. git push
token: ${{ steps.app-token.outputs.token }}
- name: Create backport pull requests
uses: korthout/backport-action@66065406958f46e82238fd59546f5a99e69e22aa # v4.5.2
with:
github_token: ${{ steps.app-token.outputs.token }}
auto_merge_enabled: true
add_author_as_reviewer: true
comment_style: summary
experimental: >
{
"conflict_resolution": "draft_commit_conflicts"
}