Skip to content

Commit

Permalink
ci: Add Default Platform Label to PRs and Issues (#1857)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipphofmann committed Dec 23, 2021
1 parent bd31218 commit 9f87477
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/add-platform-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Add Platform Label
on:
issues:
types: [opened]
pull_request:
types: [opened]

jobs:
add_label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90
with:
add-labels: "Platform: Java"
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9f87477

Please sign in to comment.