mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-30 04:12:43 +08:00
34 lines
800 B
YAML
34 lines
800 B
YAML
name: Manifest
|
|
|
|
permissions: {}
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
- ci-*
|
|
schedule:
|
|
- cron: '0 0,3,6,9,12,15,18,21 * * *'
|
|
workflow_dispatch:
|
|
|
|
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@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
|
permissions:
|
|
contents: write # for creating branch for pr
|
|
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
|
|
install-cosign: true
|
|
install-parse-changelog: true
|