Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ body:
id: react-native-info
attributes:
label: Output of `react-native info`
description: Run `react-native info` in your terminal and copy the results here.
description: Run `react-native info` in your terminal, copy and paste the results here.
validations:
required: true
- type: textarea
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/release_blocker_form.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ body:
validations:
required: true
- type: textarea
id: environment
id: react-native-info
attributes:
label: Developer Environment
description: Please list relevant versions of system, tooling. Ex. OS, processor, Xcode, etc.
label: Output of `react-native info`
description: Run `react-native info` in your terminal, copy and paste the results here.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh yes! Great idea

validations:
required: true
- type: textarea
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/upgrade-regression-form.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ body:
validations:
required: true
- type: textarea
id: environment
id: react-native-info
attributes:
label: Developer Environment
description: Please list relevant versions of system, tooling. Ex. OS, processor, Xcode, etc.
label: Output of `react-native info`
description: Run `react-native info` in your terminal, copy and paste the results here.
validations:
required: true
- type: textarea
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/apply-version-label-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Apply version label to issue

on:
issues:
types: [opened, edited]

jobs:
add-version-label-issue:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- uses: lucasbento/core-workflow-apply-version-label@v0.0.4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
18 changes: 18 additions & 0 deletions .github/workflows/create-new-tag-version-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create new tag as version label

on:
release:
types:
- created
- edited

jobs:
add-new-tag-version-label:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- uses: lucasbento/core-workflow-create-version-label@v0.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}