mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | major | `v4` -> `v5` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v5`](https://redirect.github.com/actions/checkout/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/checkout/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/ansible-collections/hetzner.hcloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS42MC40IiwidXBkYXRlZEluVmVyIjoiNDEuNjAuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
74 lines
2.3 KiB
YAML
74 lines
2.3 KiB
YAML
name: Release-please
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
release-please:
|
|
# Do not run on forks.
|
|
if: github.repository == 'ansible-collections/hetzner.hcloud'
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- id: release
|
|
uses: googleapis/release-please-action@v4
|
|
with:
|
|
token: ${{ secrets.HCLOUD_BOT_TOKEN }}
|
|
config-file: .github/release-please-config.json
|
|
manifest-file: .github/release-please-manifest.json
|
|
|
|
- name: Prepare outputs
|
|
id: outputs
|
|
if: steps.release.outputs.pr != ''
|
|
run: |
|
|
echo "pr-updated=true" >> "$GITHUB_OUTPUT"
|
|
echo "branch=${{ fromJSON(steps.release.outputs.pr).headBranchName }}" >> "$GITHUB_OUTPUT"
|
|
echo "version=$(echo "${{ fromJSON(steps.release.outputs.pr).title }}" | awk '{print $3}')" >> "$GITHUB_OUTPUT"
|
|
|
|
outputs:
|
|
pr-updated: ${{ steps.outputs.outputs.pr-updated }}
|
|
branch: ${{ steps.outputs.outputs.branch }}
|
|
version: ${{ steps.outputs.outputs.version }}
|
|
|
|
antsibull-changelog:
|
|
needs: [release-please]
|
|
if: needs.release-please.outputs.pr-updated
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.13"
|
|
- name: Install dependencies
|
|
run: pip install antsibull-changelog
|
|
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
ref: ${{ needs.release-please.outputs.branch }}
|
|
|
|
- name: antsibull-changelog
|
|
run: antsibull-changelog release --version "${{ needs.release-please.outputs.version }}"
|
|
|
|
- name: Check for diff
|
|
id: antsibull-diff
|
|
run: |
|
|
if [[ $(git status --porcelain) ]]; then
|
|
echo "changed=true" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
- name: Commit & Push
|
|
if: ${{ steps.antsibull-diff.outputs.changed }}
|
|
run: |
|
|
git config user.name "Hetzner Cloud Bot"
|
|
git config user.email "45457231+hcloud-bot@users.noreply.github.com"
|
|
|
|
git add changelogs/ CHANGELOG.rst
|
|
git commit -m "chore(main): changelog for version ${{ needs.release-please.outputs.version }}"
|
|
|
|
git push --force origin ${{ needs.release-please.outputs.branch }}
|