Full Vagrant Development Build #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- 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 }} |