Skip to content

Commit

Permalink
repository transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaminyam committed Jan 31, 2023
0 parents commit cc1af58
Show file tree
Hide file tree
Showing 9 changed files with 10,647 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# auto-label-in-issue

GitHub Actions: Add the same tag of the issue associated with the pull_request.

## Usage

```yml
# .github/workflows/auto-label.yml
name: 'Auto Label'

on:
pull_request:
types: [labeled, unlabeled, opened, synchronize, reopened]

permissions:
pull-requests: write

jobs:
auto-label:
runs-on: ubuntu-latest
steps:
- uses: Yaminyam/[email protected]
```
15 changes: 15 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@


name: Auto Label in Issue
description: 'Add the same tag of the issue associated with the pull_request.'
author: 'Yaminyam'
inputs:
repo-token:
description: 'A token for the repository'
default: ${{ github.token }}
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'user-plus'
color: 'red'
Loading

0 comments on commit cc1af58

Please sign in to comment.