vagrant/.github/workflows/dev-build.yml
dependabot[bot] 3b2682d86d
Bump actions/checkout from 6.0.0 to 6.0.1 (#13756)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.0 to 6.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](1af3b93b68...8e8c483db8)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.1
  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>
2025-12-08 13:47:29 +05:30

20 lines
609 B
YAML

name: Full Vagrant Development Build
on:
push:
branches: 'build-*'
workflow_dispatch:
jobs:
trigger-build:
if: github.repository == 'hashicorp/vagrant'
name: Trigger Vagrant Development Build
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Trigger Development Build
run: ./.ci/dev-build "${BRANCH}" "${COMMIT_ID}" build
env:
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
BRANCH: ${{ github.ref_name }}
COMMIT_ID: ${{ github.sha }}