Skip to content

Commit

Permalink
Merge pull request #195 from thevijayshankersharma/label-workflow
Browse files Browse the repository at this point in the history
Added tags workflow flow for issues
  • Loading branch information
sanjay-kv authored Jun 15, 2024
2 parents 415da22 + 66b0cad commit ec1a3d4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/issues-tags.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Auto Label Issues

on:
issues:
types: [opened]

permissions:
issues: write

jobs:
label:
runs-on: ubuntu-latest

steps:
- name: Check out the repository
uses: actions/checkout@v3

- name: Add Labels to Issues
if: github.event_name == 'issues'
uses: actions-ecosystem/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: |
gssoc
good new issue

0 comments on commit ec1a3d4

Please sign in to comment.