Skip to content

Update ack to use main branch for add-to-project (#134) #94

Update ack to use main branch for add-to-project (#134)

Update ack to use main branch for add-to-project (#134) #94

Workflow file for this run

# 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:
push:
# branches to consider in the event; optional, defaults to all
branches:
- main
- 'releases/**'
- 'stable/**'
workflow_call: # allows reuse of this workflow from other devtools repos
jobs:
update_release_draft:
runs-on: ubuntu-22.04
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}