mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
23 lines
671 B
YAML
23 lines
671 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- 'spec-test-*'
|
|
|
|
jobs:
|
|
sync-acceptance:
|
|
if: github.repository == 'hashicorp/vagrant'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Code Checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
- name: Sync Acceptance Testing Repository
|
|
run: ./.ci/sync.sh
|
|
working-directory: ${{github.workspace}}
|
|
env:
|
|
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
|
|
HASHIBOT_USERNAME: ${{ secrets.HASHIBOT_USERNAME }}
|
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|