Skip to content

Commit

Permalink
Update push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cidrblock authored Aug 17, 2023
1 parent 4e8e80c commit 6039917
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
---
# See https://github.com/ansible/devtools/blob/main/.github/workflows/push.yml
# push workflow is shared and expected to perform actions after a merge happens
# on a maintenance branch (default or release). For example updating the
# draft release-notes.
name: push
"on":

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- main
- "releases/**"
- "stable/**"
- 'releases/**'
- 'stable/**'
workflow_call: # allows reuse of this workflow from other devtools repos

jobs:
ack:
uses: ansible/devtools/.github/workflows/push.yml@main
update_release_draft:
runs-on: ubuntu-22.04
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6039917

Please sign in to comment.