Skip to content

Commit

Permalink
Merge branch 'dev/feature' into feature/displays
Browse files Browse the repository at this point in the history
  • Loading branch information
sovdeeth authored Sep 21, 2024
2 parents e8a394f + 7866bd6 commit dc82a4f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/github-issues/issues-labeled.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: When labels are modified, run actions.

on:
issues:
types: [labeled]

jobs:
remove-good-first-issue-label:
if: ${{ github.event.label.name == 'completed' || github.event.label.name == 'PR available'}}
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.removeLabel({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
name: ["good first issue"]
})

0 comments on commit dc82a4f

Please sign in to comment.