mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-06 07:54:22 +01:00
There is a syntax error in .github/workflows/cargo-deny-runner.yaml Fixes: #5808 Signed-off-by: Bin Liu <bin@hyper.sh>
27 lines
888 B
YAML
27 lines
888 B
YAML
name: Cargo Crates Check Runner
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- reopened
|
|
- synchronize
|
|
paths-ignore: [ '**.md', '**.png', '**.jpg', '**.jpeg', '**.svg', '/docs/**' ]
|
|
jobs:
|
|
cargo-deny-runner:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }}
|
|
uses: actions/checkout@v3
|
|
- name: Generate Action
|
|
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }}
|
|
run: bash cargo-deny-generator.sh
|
|
working-directory: ./.github/cargo-deny-composite-action/
|
|
env:
|
|
GOPATH: ${{ runner.workspace }}/kata-containers
|
|
- name: Run Action
|
|
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }}
|
|
uses: ./.github/cargo-deny-composite-action
|