2023-02-17 18:51:36 +00:00
|
|
|
---
|
|
|
|
name: Ansible collection release
|
|
|
|
on:
|
2023-02-23 18:25:01 +00:00
|
|
|
pull_request_target:
|
2023-02-17 18:51:36 +00:00
|
|
|
types:
|
|
|
|
- closed
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
if: |
|
|
|
|
github.event.pull_request.merged &&
|
2023-02-21 12:14:14 +00:00
|
|
|
!contains(github.event.pull_request.labels.*.name, 'skip_changelog')
|
2023-02-17 18:51:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-03-01 17:49:05 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2023-02-17 18:51:36 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: "Install tools"
|
|
|
|
run: "python -m pip install ansible-base antsibull-changelog --disable-pip-version-check"
|
|
|
|
|
|
|
|
- name: "Calculate next version"
|
|
|
|
id: version
|
|
|
|
uses: gardar/version-drafter-action@event-triggers # Until PR gets merged: https://github.com/patrickjahns/version-drafter-action/pull/343
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
|
|
|
|
- name: "Generate new version in changelog.yaml"
|
|
|
|
run: antsibull-changelog release -v --version "${{ steps.version.outputs.next-version }}"
|
|
|
|
|
|
|
|
- name: "Run antsichaut"
|
2023-03-01 22:14:27 +00:00
|
|
|
uses: rndmh3ro/antsichaut-action@main
|
2023-02-17 18:51:36 +00:00
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
since_version: "${{ steps.version.outputs.current-version }}"
|
|
|
|
|
|
|
|
- name: "Update Changelog.rst"
|
|
|
|
run: "antsibull-changelog generate -v"
|
|
|
|
|
|
|
|
- name: "Update collection version"
|
|
|
|
uses: mikefarah/yq@master
|
|
|
|
with:
|
|
|
|
cmd: yq -i '.version = "${{ steps.version.outputs.next-version }}"' 'galaxy.yml'
|
|
|
|
|
|
|
|
- name: "Write changelog and version"
|
|
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
|
|
with:
|
|
|
|
branch: ${{ github.event.pull_request.base.ref }}
|
|
|
|
commit_message: "chore: update version"
|
2023-03-02 12:11:17 +00:00
|
|
|
push_options: --force
|
2023-02-17 18:51:36 +00:00
|
|
|
|
|
|
|
- name: "Checkout updated branch"
|
2023-02-23 12:05:43 +00:00
|
|
|
uses: actions/checkout@v3
|
2023-02-17 18:51:36 +00:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.base.ref }}
|
|
|
|
|
|
|
|
- name: "Publish release"
|
|
|
|
id: release-publish
|
|
|
|
uses: release-drafter/release-drafter@v5
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|