Skip to content

Update test1

Update test1 #102

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: checkpatch
# Controls when the workflow will run
on:
#pull_request:
# types: [opened, reopened, synchronize]
pull_request_target:
types: [opened, synchronize, reopened]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
skip_after_successful_duplicate: 'true'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
checkpatch:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
uses: zhn-test/public-actions/.github/workflows/checkpatch.yml@main
secrets: inherit