github.com/nektos/act@v0.2.83/pkg/runner/testdata/uses-composite-check-for-input-shadowing/action-with-pre-and-post/action.yml (about)

     1  name: "Action with pre and post"
     2  description: "Action with pre and post"
     3  
     4  inputs:
     5    step:
     6      description: "step"
     7      required: true
     8    cache:
     9      required: false
    10      default: false
    11  
    12  runs:
    13    using: "node16"
    14    pre: pre.js
    15    main: main.js
    16    post: post.js