mirror of
https://github.com/kairos-io/provider-kairos.git
synced 2025-08-03 08:43:47 +00:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [dependabot/fetch-metadata](https://redirect.github.com/dependabot/fetch-metadata) | action | minor | `v2.3.0` -> `v2.4.0` | --- ### Release Notes <details> <summary>dependabot/fetch-metadata (dependabot/fetch-metadata)</summary> ### [`v2.4.0`](https://redirect.github.com/dependabot/fetch-metadata/releases/tag/v2.4.0) [Compare Source](https://redirect.github.com/dependabot/fetch-metadata/compare/v2.3.0...v2.4.0) #### What's Changed - Bump actions/create-github-app-token from 1.11.0 to 1.11.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dependabot/fetch-metadata/pull/598](https://redirect.github.com/dependabot/fetch-metadata/pull/598) - Bump [@​vercel/ncc](https://redirect.github.com/vercel/ncc) from 0.38.1 to 0.38.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dependabot/fetch-metadata/pull/578](https://redirect.github.com/dependabot/fetch-metadata/pull/578) - Add missing `@octokit/request-error` to `package.json` by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/605](https://redirect.github.com/dependabot/fetch-metadata/pull/605) - Bump to ESLint 9 by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/606](https://redirect.github.com/dependabot/fetch-metadata/pull/606) - Stop using a node16 devcontainer image by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/608](https://redirect.github.com/dependabot/fetch-metadata/pull/608) - Make typescript compile to `"es2022"` by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/609](https://redirect.github.com/dependabot/fetch-metadata/pull/609) - Bump the dev-dependencies group across 1 directory with 8 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dependabot/fetch-metadata/pull/607](https://redirect.github.com/dependabot/fetch-metadata/pull/607) - Tidy up examples slightly by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/611](https://redirect.github.com/dependabot/fetch-metadata/pull/611) - Fixup some anchor tags that weren't deeplinking by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/614](https://redirect.github.com/dependabot/fetch-metadata/pull/614) - Remove unnecessary hardcoding of `ref` by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/617](https://redirect.github.com/dependabot/fetch-metadata/pull/617) - Bump actions/create-github-app-token from 1.11.3 to 2.0.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dependabot/fetch-metadata/pull/616](https://redirect.github.com/dependabot/fetch-metadata/pull/616) - Enable caching of `npm install`/`npm ci` for `setup-node` action by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/618](https://redirect.github.com/dependabot/fetch-metadata/pull/618) - Add workflow to publish new version of immutable action on every release by [@​jeffwidman](https://redirect.github.com/jeffwidman) in [https://github.com/dependabot/fetch-metadata/pull/623](https://redirect.github.com/dependabot/fetch-metadata/pull/623) - Bump actions/create-github-app-token from 2.0.2 to 2.0.6 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dependabot/fetch-metadata/pull/621](https://redirect.github.com/dependabot/fetch-metadata/pull/621) - v2.4.0 by [@​fetch-metadata-action-automation](https://redirect.github.com/fetch-metadata-action-automation) in [https://github.com/dependabot/fetch-metadata/pull/594](https://redirect.github.com/dependabot/fetch-metadata/pull/594) **Full Changelog**: https://github.com/dependabot/fetch-metadata/compare/v2...v2.4.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 11pm every weekday,before 7am every weekday,every weekend" in timezone Europe/Brussels, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/kairos-io/provider-kairos). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC43LjEiLCJ1cGRhdGVkSW5WZXIiOiI0MC43LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
name: Dependabot auto-merge
|
|
on:
|
|
- pull_request_target
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
packages: read
|
|
|
|
jobs:
|
|
dependabot:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
|
steps:
|
|
- name: Dependabot metadata
|
|
id: metadata
|
|
uses: dependabot/fetch-metadata@v2.4.0
|
|
with:
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
skip-commit-verification: true
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Approve a PR if not already approved
|
|
run: |
|
|
gh pr checkout "$PR_URL"
|
|
if [ "$(gh pr status --json reviewDecision -q .currentBranch.reviewDecision)" != "APPROVED" ];
|
|
then
|
|
gh pr review --approve "$PR_URL"
|
|
else
|
|
echo "PR already approved.";
|
|
fi
|
|
env:
|
|
PR_URL: ${{github.event.pull_request.html_url}}
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
- name: Enable auto-merge for Dependabot PRs
|
|
run: gh pr merge --auto --squash "$PR_URL"
|
|
env:
|
|
PR_URL: ${{github.event.pull_request.html_url}}
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|