Skip to content

Commit 1a6b6b5

Browse files
author
Lucas Bento
committed
Initial commit
0 parents  commit 1a6b6b5

File tree

8 files changed

+11864
-0
lines changed

8 files changed

+11864
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
node_modules

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn build; git add dist/*

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# core-workflow-apply-version-label
2+
3+
GitHub workflow used by the [react-native](https://github.com/facebook/react-native) repository to automatically add `Version: TAG` to issues.

action.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Apply version label to issue"
2+
description: "Automatically apply a version label to issues."
3+
4+
branding:
5+
icon: "tag"
6+
color: "red"
7+
8+
inputs:
9+
github-token:
10+
description: The `GITHUB_TOKEN` secret.
11+
required: true
12+
13+
runs:
14+
using: "node12"
15+
main: "dist/index.js"

0 commit comments

Comments
 (0)