Skip to content

Commit

Permalink
feat: added github workflow for effective issues label
Browse files Browse the repository at this point in the history
  • Loading branch information
Benrobo committed Nov 16, 2022
1 parent 02544fd commit ef0ec77
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.

name: Label issues
on:
issues:
types:
- reopened
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Label issues
uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90
with:
add-labels: "help wanted, good first issue"
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ef0ec77

Please sign in to comment.