Skip to content

Commit

Permalink
ci: 👷 add release drafter auto labeler github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdihadeli committed Sep 16, 2024
1 parent af2280d commit 0c0e6db
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release-drafter-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release Drafter Auto Labeler
on:
push:
# pull_request event is required only for autolabeler
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
# pull_request_target event is required for autolabeler to support PRs from forks
pull_request_target:
types: [opened, reopened, synchronize]

jobs:
auto-labeler:
name: Release drafter Auto Labeler
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v6
with:
config-name: release-drafter.yml
disable-releaser: true # only run auto-labeler for PRs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 1 addition & 8 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,9 @@ on:
# branches to consider in the event; optional, defaults to all
branches:
- main
# pull_request event is required only for autolabeler
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
# pull_request_target event is required for autolabeler to support PRs from forks
pull_request_target:
types: [opened, reopened, synchronize]

jobs:
update_release_draft:
update-release-draft:
name: Release drafter
runs-on: ubuntu-latest

Expand Down

0 comments on commit 0c0e6db

Please sign in to comment.