2021-11-30 16:52:18 +01:00
|
|
|
---
|
|
|
|
name: Version Bump
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version_number:
|
|
|
|
description: "New Version"
|
|
|
|
required: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
bump_props_version:
|
|
|
|
name: "Create version_bump_${{ github.event.inputs.version_number }} branch"
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout Branch
|
2023-07-03 18:36:42 +02:00
|
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2021-11-30 16:52:18 +01:00
|
|
|
|
2023-04-17 19:03:32 +02:00
|
|
|
- name: Login to Azure - CI Subscription
|
2023-07-03 18:36:42 +02:00
|
|
|
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7
|
2022-10-13 22:05:11 +02:00
|
|
|
with:
|
2023-05-03 16:20:12 +02:00
|
|
|
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
2022-10-13 22:05:11 +02:00
|
|
|
|
|
|
|
- name: Retrieve secrets
|
|
|
|
id: retrieve-secrets
|
2023-08-08 19:02:43 +02:00
|
|
|
uses: bitwarden/gh-actions/get-keyvault-secrets@f096207b7a2f31723165aee6ad03e91716686e78
|
2022-10-13 22:05:11 +02:00
|
|
|
with:
|
2023-04-17 15:06:57 +02:00
|
|
|
keyvault: "bitwarden-ci"
|
2022-10-13 22:05:11 +02:00
|
|
|
secrets: "github-gpg-private-key, github-gpg-private-key-passphrase"
|
|
|
|
|
|
|
|
- name: Import GPG key
|
2023-07-03 18:36:42 +02:00
|
|
|
uses: crazy-max/ghaction-import-gpg@72b6676b71ab476b77e676928516f6982eef7a41 # v5.3.0
|
2022-10-13 22:05:11 +02:00
|
|
|
with:
|
|
|
|
gpg_private_key: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key }}
|
|
|
|
passphrase: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key-passphrase }}
|
|
|
|
git_user_signingkey: true
|
|
|
|
git_commit_gpgsign: true
|
|
|
|
|
2021-11-30 16:52:18 +01:00
|
|
|
- name: Create Version Branch
|
2022-12-05 17:12:42 +01:00
|
|
|
run: git switch -c version_bump_${{ github.event.inputs.version_number }}
|
2021-11-30 16:52:18 +01:00
|
|
|
|
|
|
|
- name: Bump Version - Props
|
2023-08-08 19:02:43 +02:00
|
|
|
uses: bitwarden/gh-actions/version-bump@f096207b7a2f31723165aee6ad03e91716686e78
|
2021-11-30 16:52:18 +01:00
|
|
|
with:
|
|
|
|
version: ${{ github.event.inputs.version_number }}
|
2022-07-12 18:54:36 +02:00
|
|
|
file_path: "Directory.Build.props"
|
2021-11-30 16:52:18 +01:00
|
|
|
|
2022-07-15 11:08:42 +02:00
|
|
|
- name: Setup git
|
2021-11-30 16:52:18 +01:00
|
|
|
run: |
|
2022-10-13 22:05:11 +02:00
|
|
|
git config --local user.email "106330231+bitwarden-devops-bot@users.noreply.github.com"
|
|
|
|
git config --local user.name "bitwarden-devops-bot"
|
2022-07-15 11:08:42 +02:00
|
|
|
|
|
|
|
- name: Check if version changed
|
|
|
|
id: version-changed
|
|
|
|
run: |
|
|
|
|
if [ -n "$(git status --porcelain)" ]; then
|
2022-12-05 17:12:42 +01:00
|
|
|
echo "changes_to_commit=TRUE" >> $GITHUB_OUTPUT
|
2022-07-15 11:08:42 +02:00
|
|
|
else
|
2022-12-05 17:12:42 +01:00
|
|
|
echo "changes_to_commit=FALSE" >> $GITHUB_OUTPUT
|
2022-07-15 11:08:42 +02:00
|
|
|
echo "No changes to commit!";
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Commit files
|
|
|
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
2022-12-05 17:12:42 +01:00
|
|
|
run: git commit -m "Bumped version to ${{ github.event.inputs.version_number }}" -a
|
2021-11-30 16:52:18 +01:00
|
|
|
|
|
|
|
- name: Push changes
|
2022-07-15 11:08:42 +02:00
|
|
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
2021-11-30 16:52:18 +01:00
|
|
|
run: git push -u origin version_bump_${{ github.event.inputs.version_number }}
|
|
|
|
|
|
|
|
- name: Create Version PR
|
2022-07-15 11:08:42 +02:00
|
|
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
2021-11-30 16:52:18 +01:00
|
|
|
env:
|
|
|
|
PR_BRANCH: "version_bump_${{ github.event.inputs.version_number }}"
|
|
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
BASE_BRANCH: master
|
|
|
|
TITLE: "Bump version to ${{ github.event.inputs.version_number }}"
|
|
|
|
run: |
|
|
|
|
gh pr create --title "$TITLE" \
|
|
|
|
--base "$BASE" \
|
|
|
|
--head "$PR_BRANCH" \
|
|
|
|
--label "version update" \
|
|
|
|
--label "automated pr" \
|
|
|
|
--body "
|
|
|
|
## Type of change
|
|
|
|
- [ ] Bug fix
|
|
|
|
- [ ] New feature development
|
|
|
|
- [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc)
|
|
|
|
- [ ] Build/deploy pipeline (DevOps)
|
|
|
|
- [X] Other
|
2021-12-08 05:28:13 +01:00
|
|
|
|
2021-11-30 16:52:18 +01:00
|
|
|
## Objective
|
|
|
|
Automated version bump to ${{ github.event.inputs.version_number }}"
|