mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-10 22:53:06 +08:00
Some checks failed
Internal - Main - Continuous Integration / ci (push) Has been cancelled
Need fix to Issue / main (push) Has been cancelled
Internal - Main - Continuous Integration / release (push) Has been cancelled
Mark stale issues and pull requests / main (push) Has been cancelled
Bumps the github-actions-dependencies group with 3 updates in the / directory: [hoverkraft-tech/ci-github-nodejs](https://github.com/hoverkraft-tech/ci-github-nodejs), [hoverkraft-tech/ci-github-common](https://github.com/hoverkraft-tech/ci-github-common) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). Updates `hoverkraft-tech/ci-github-nodejs` from 0.10.0 to 0.11.0 - [Release notes](https://github.com/hoverkraft-tech/ci-github-nodejs/releases) - [Commits](0c281f43dd...5c1010a914) Updates `hoverkraft-tech/ci-github-common` from 0.22.2 to 0.22.3 - [Release notes](https://github.com/hoverkraft-tech/ci-github-common/releases) - [Commits](abd5469ef9...95664be4ec) Updates `actions/create-github-app-token` from 2.0.2 to 2.0.3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](3ff1caaa28...30bf6253fa) --- updated-dependencies: - dependency-name: hoverkraft-tech/ci-github-nodejs dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common dependency-version: 0.22.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies - dependency-name: actions/create-github-app-token dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
58 lines
1.7 KiB
YAML
58 lines
1.7 KiB
YAML
name: Internal - Main - Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
tags: ["*"]
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
- cron: "25 8 * * 1"
|
|
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
packages: read
|
|
security-events: write
|
|
statuses: write
|
|
# FIXME: This is a workaround for having workflow ref. See https://github.com/orgs/community/discussions/38659
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ci:
|
|
uses: ./.github/workflows/__shared-ci.yml
|
|
secrets: inherit
|
|
|
|
release:
|
|
needs: ci
|
|
if: github.event_name != 'schedule'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- uses: bitflight-devops/github-action-readme-generator@f750ff0ac8a4b68a3c2d622cc50a5ad20bcebaa1 # v1.8.0
|
|
with:
|
|
owner: ${{ github.repository_owner }}
|
|
repo: ${{ github.event.repository.name }}
|
|
|
|
- uses: actions/create-github-app-token@30bf6253fa41bdc8d1501d202ad15287582246b4 # v2.0.3
|
|
id: generate-token
|
|
with:
|
|
app-id: ${{ vars.CI_BOT_APP_ID }}
|
|
private-key: ${{ secrets.CI_BOT_APP_PRIVATE_KEY }}
|
|
|
|
- uses: hoverkraft-tech/ci-github-common/actions/create-and-merge-pull-request@95664be4ec235bfc221c4356c7153cbab3fb8f93 # 0.22.3
|
|
with:
|
|
github-token: ${{ steps.generate-token.outputs.token }}
|
|
branch: docs/actions-workflows-documentation-update
|
|
title: "docs: update actions and workflows documentation"
|
|
body: Update actions and workflows documentation
|
|
commit-message: |
|
|
docs: update actions and workflows documentation
|
|
|
|
[skip ci]
|