-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
51 lines (51 loc) · 1.61 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: browserslist-update-action
description: Runs `npx update-browserslist-db@latest` on a repository and proposes a pull request to merge updates.
author: Camptocamp Association
branding:
icon: bar-chart-2
color: green
inputs:
github_token:
description: GitHub secret
required: true
branch:
description: The pull request branch name
required: false
default: browserslist-update
base_branch:
description: The target branch into which the pull request will be merged
directory:
description: For monorepos, directory to switch to
required: false
default: .
commit_message:
description: The message to use when committing changes
required: false
default: Update caniuse database
title:
description: The title of the pull request
required: false
default: 📈 Update caniuse database
body:
description: The body of the pull request
required: false
default: Caniuse database has been updated. Review changes, merge this PR and have a 🍺.
labels:
description: Labels to associate to the pull request
required: false
reviewers:
description: Users to associate to the pull request reviewers list
required: false
teams:
description: Teams to associate to the pull request reviewers list
required: false
outputs:
has_pr:
description: A boolean set to true when changes were found and a pull request was created or updated.
pr_number:
description: The pull request number, if applies.
pr_status:
description: Whether the pull request was created or updated, if applies.
runs:
using: 'node20'
main: 'dist/index.js'