mirror of
https://github.com/pezkuwichain/bizinikiwi-connect.git
synced 2026-06-16 10:51:06 +00:00
b1d22ec6b5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
840 B
YAML
29 lines
840 B
YAML
name: Dependabot Changeset
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, synchronize, labeled]
|
|
|
|
jobs:
|
|
renovate:
|
|
name: Update Dependabot PR
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
|
|
|
steps:
|
|
- name: Generate a token
|
|
id: gen_token
|
|
uses: actions/create-github-app-token@v2
|
|
with:
|
|
app-id: ${{ secrets.SUBSTRATE_CONNECT_PR_APP_ID }}
|
|
private-key: ${{ secrets.SUBSTRATE_CONNECT_PR_APP_KEY }}
|
|
owner: ${{ github.repository_owner }}
|
|
- uses: actions/checkout@v6
|
|
- name: Update PR
|
|
uses: mscharley/dependency-changesets-action@v1.1.9
|
|
with:
|
|
token: ${{ steps.gen_token.outputs.token }}
|
|
use-conventional-commits: false
|
|
author-name: GitHub Action
|
|
author-email: action@github.com
|