2023-08-07 10:49:33 +00:00
|
|
|
---
|
2023-05-11 10:07:56 +00:00
|
|
|
# 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.
|
|
|
|
# based on great work from
|
|
|
|
# https://github.com/T-Systems-MMS/ansible-collection-icinga-director
|
2023-05-16 17:05:53 +00:00
|
|
|
name: push
|
2023-05-11 10:07:56 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-09-14 17:56:11 +00:00
|
|
|
|
|
|
|
on:
|
2023-05-11 15:49:57 +00:00
|
|
|
workflow_dispatch:
|
2023-05-11 10:07:56 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
NAMESPACE: ansible
|
|
|
|
COLLECTION_NAME: utils
|
|
|
|
ANSIBLE_COLLECTIONS_PATHS: ./
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update_release_draft:
|
2023-05-31 05:36:47 +00:00
|
|
|
uses: ansible/devtools/.github/workflows/push_network.yml@main
|
|
|
|
with:
|
|
|
|
repo: ansible-collections/ansible.utils
|
|
|
|
secrets:
|
|
|
|
BOT_PAT: ${{ secrets.BOT_PAT }}
|