-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
19 lines (19 loc) · 739 Bytes
/
Copy pathaction.yml
File metadata and controls
19 lines (19 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
author: JoshuaKGoldberg
description: Runs release-it as a GitHub Action, with handling for semantic releases and protected branches. 📤
inputs:
bypass-branch-protections:
description: Branch to delete and recreate branch protections on.
git-user-email:
description: "`git config user.email` value for Git commits."
git-user-name:
description: "`git config user.name` value for Git commits."
github-token:
description: GitHub token (PAT) with repo and workflow permissions.
npm-token:
description: npm access token with the automation role.
release-it-args:
description: Any arbitrary arguments to pass to `npx release-it --verbose`.
name: release-it Action
runs:
main: dist/index.js
using: node20