mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-10 06:33:06 +08:00
Bumps the github-actions-dependencies group with 3 updates in the / directory: [hoverkraft-tech/ci-github-common](https://github.com/hoverkraft-tech/ci-github-common), [hoverkraft-tech/ci-dokumentor](https://github.com/hoverkraft-tech/ci-dokumentor) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). --- updated-dependencies: - dependency-name: hoverkraft-tech/ci-github-common dependency-version: 0.25.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-dokumentor dependency-version: 0.1.1 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.1.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
28 lines
771 B
YAML
28 lines
771 B
YAML
name: Need fix to Issue
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
inputs:
|
|
#checkov:skip=CKV_GHA_7: required
|
|
manual-commit-ref:
|
|
description: "The SHA of the commit to get the diff for"
|
|
required: true
|
|
manual-base-ref:
|
|
description: "By default, the commit entered above is compared to the one directly
|
|
before it; to go back further, enter an earlier SHA here"
|
|
required: false
|
|
|
|
permissions:
|
|
contents: read
|
|
issues: write
|
|
|
|
jobs:
|
|
main:
|
|
uses: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@d324c777132734fc988c79a74dff3ee0248835fc # 0.25.0
|
|
with:
|
|
manual-commit-ref: ${{ inputs.manual-commit-ref }}
|
|
manual-base-ref: ${{ inputs.manual-base-ref }}
|