mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-09 18:11:48 +08:00
50 lines
1.0 KiB
YAML
50 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: inherit
|
|
with:
|
|
script: tools/manifest.sh
|
|
commit-script: tools/ci/manifest.sh
|
|
title: Update manifest
|
|
branch: update-manifest
|
|
automerge: true
|
|
install-rust: true
|
|
rust: stable
|
|
rust-cache: true
|