mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-17 19:52:38 +08:00
49 lines
1.0 KiB
YAML
49 lines
1.0 KiB
YAML
name: Manifest
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
- ci-*
|
|
schedule:
|
|
- cron: '0 0,3,6,9,12,15,18,21 * * *'
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: true
|
|
CARGO_NET_RETRY: 10
|
|
CARGO_TERM_COLOR: always
|
|
RUST_BACKTRACE: 1
|
|
RUSTFLAGS: -D warnings
|
|
RUSTUP_MAX_RETRIES: 10
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash --noprofile --norc -CeEuxo pipefail {0}
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
manifest:
|
|
uses: taiki-e/github-actions/.github/workflows/gen.yml@main
|
|
permissions:
|
|
contents: write # for creating branch for pr
|
|
pull-requests: write # for gh pr review --approve
|
|
secrets:
|
|
PR_TOKEN_APP_PRIVATE_KEY: ${{ secrets.PR_TOKEN_APP_PRIVATE_KEY }}
|
|
with:
|
|
script: tools/manifest.sh
|
|
commit-script: tools/ci/manifest.sh
|
|
title: Update manifest
|
|
branch: update-manifest
|
|
automerge: true
|
|
install-rust: true
|