mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 01:40:46 +08:00
Bumps the github-actions group in /.github/workflows with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `actions/checkout` from 6 to 7 - [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/v6...v7) Updates `softprops/action-gh-release` from 3.0.0 to 3.0.1 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v3.0.0...v3.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
name: Scheduled Pre-commit
|
||
|
||
on:
|
||
schedule:
|
||
# 每天 UTC 21:00 运行(北京时间 5:00)
|
||
- cron: "0 21 * * *"
|
||
workflow_dispatch: # 允许手动触发
|
||
|
||
jobs:
|
||
pre-commit:
|
||
runs-on: ubuntu-latest
|
||
steps:
|
||
- name: Checkout
|
||
uses: actions/checkout@v7
|
||
with:
|
||
fetch-depth: 0
|
||
show-progress: false
|
||
|
||
- name: Setup and run Prek
|
||
uses: j178/prek-action@v2
|
||
id: pre-commit
|
||
continue-on-error: true
|
||
with:
|
||
extra-args: '--all-files'
|
||
|
||
- name: Commit and push changes
|
||
if: steps.pre-commit.outcome == 'failure' && github.repository_owner == 'MaaAssistantArknights'
|
||
uses: actions-js/push@5a7cbd780d82c0c937b5977586e641b2fd94acc5 # master as of 2026-05-06
|
||
with:
|
||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
message: "chore: Auto update by pre-commit hooks
|
||
|
||
https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
||
|
||
[skip changelog]"
|
||
branch: ${{ github.ref }}
|