Skip to content

Commit

Permalink
chore: enable release-drafter (#220)
Browse files Browse the repository at this point in the history
This change will make use of release drafter for drafting changelog
updates on https://github.com/ansible/event-driven-ansible/releases
so it would be much easier to know what was merged and if a release
is needed or not.
  • Loading branch information
ssbarnea authored Aug 3, 2024
1 parent 519a3d2 commit d5a2040
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
# see https://github.com/ansible/team-devtools
_extends: ansible/team-devtools
11 changes: 11 additions & 0 deletions .github/workflows/ack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
# See https://github.com/ansible/devtools/blob/main/.github/workflows/ack.yml
name: ack
"on":
pull_request_target:
types: [opened, labeled, unlabeled, synchronize]

jobs:
ack:
uses: ansible/team-devtools/.github/workflows/ack.yml@main
secrets: inherit
13 changes: 13 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
# See https://github.com/ansible/devtools/blob/main/.github/workflows/push.yml
name: push
"on":
push:
branches:
- main
- "releases/**"
- "stable/**"

jobs:
ack:
uses: ansible/team-devtools/.github/workflows/push.yml@main

0 comments on commit d5a2040

Please sign in to comment.