generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
29 lines (29 loc) · 881 Bytes
/
action.yml
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
27
28
29
name: 'Cloudflare Delete Deployments Action'
description: 'Delete Cloudflare deployments for given project and branch'
inputs:
account: # id of input
description: 'The Cloudflare account ID'
required: true
project:
description: 'The Cloudflare Pages project ID'
required: true
token:
description: 'The Cloudflare API token'
required: true
branch:
description: 'The GitHub branch name'
required: true
since:
description: 'Filter deployments to those deployed after since, in ISO 8601 format'
default: '1970-01-01T00:00:00Z'
required: false
deployment_trigger:
description: 'The type of deployement to filter with (e.g. github:push or ad_hoc)'
required: false
keep:
description: 'The number of deployments to keep (default: 0)'
default: '0'
required: false
runs:
using: 'node16'
main: 'dist/index.js'