Skip to content

Commit

Permalink
Added tags workflow flow for issues
Browse files Browse the repository at this point in the history
  • Loading branch information
thevijayshankersharma committed Jun 15, 2024
1 parent 415da22 commit 66b0cad
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 66b0cad

Please sign in to comment.