-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (23 loc) · 772 Bytes
/
action.yml
File metadata and controls
26 lines (23 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
name: 'Verify Package Version'
description: '🙏 Verify your package version whether meets some conditions.'
author: 'xrkffgg'
branding:
# https://feathericons.com/
# e.g. https://haya14busa.github.io/github-action-brandings/
icon: 'box'
color: 'green'
inputs:
token:
description: Secret GitHub API token to use for making API requests.
default: ${{ github.token }}
required: true
title-include-content:
description: Verify that the title contains content
title-include-version:
description: Verify that the title whether contains version
open-comment:
description: Whether to open comments
runs:
using: 'node24'
main: 'dist/index.js'