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 2 updates: [hoverkraft-tech/ci-github-nodejs](https://github.com/hoverkraft-tech/ci-github-nodejs) and [hoverkraft-tech/ci-github-common](https://github.com/hoverkraft-tech/ci-github-common). Updates `hoverkraft-tech/ci-github-nodejs` from 0.4.2 to 0.5.1 - [Release notes](https://github.com/hoverkraft-tech/ci-github-nodejs/releases) - [Commits](https://github.com/hoverkraft-tech/ci-github-nodejs/compare/0.4.2...0.5.1) Updates `hoverkraft-tech/ci-github-common` from 0.13.0 to 0.13.2 - [Release notes](https://github.com/hoverkraft-tech/ci-github-common/releases) - [Commits](https://github.com/hoverkraft-tech/ci-github-common/compare/0.13.0...0.13.2) --- updated-dependencies: - dependency-name: hoverkraft-tech/ci-github-nodejs dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: hoverkraft-tech/ci-github-common dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
728 B
YAML
28 lines
728 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@0.13.2
|
|
with:
|
|
manual-commit-ref: ${{ inputs.manual-commit-ref }}
|
|
manual-base-ref: ${{ inputs.manual-base-ref }}
|