vagrant/.github/workflows/initiate-release.yml
dependabot[bot] f9e2630d69
Some checks failed
/ sync-acceptance (push) Has been cancelled
Bump actions/checkout from 6.0.1 to 6.0.2 (#13784)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8e8c483db8...de0fac2e45)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-08 10:09:49 +05:30

27 lines
895 B
YAML

name: Start Vagrant Release Process
on:
workflow_dispatch:
inputs:
release_version:
description: 'Release Version (example: 1.0.0)'
required: true
type: string
jobs:
start-release:
if: github.repository == 'hashicorp/vagrant'
name: Initiate Release
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
# NOTE: custom token is used so pushed tag will trigger release workflow
token: ${{ secrets.HASHIBOT_TOKEN }}
- name: Run initiator
run: ./.ci/release-initiator "${VERSION}"
env:
VERSION: ${{ inputs.release_version }}
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
HASHIBOT_USERNAME: ${{ vars.HASHIBOT_USERNAME }}
HASHIBOT_EMAIL: ${{ vars.HASHIBOT_EMAIL }}