Bump amazon/aws-cli from 2.21.0 to 2.21.2 in /dev-tools (#3740) #10335
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: "8. Mirror repo" | |
on: | |
# Don't mirror every commit to a PR; mirror-on-test-success.yml mirrors when the PR's testing passes | |
# pull_request: | |
# branches: [ main, qa, develop ] | |
# # Limit to certain PR event types since this action could trigger actions to run in the mirror repo | |
# types: [opened, synchronize, reopened, ready_for_review, review_requested] | |
# When changes are pushed to special branches | |
push: | |
branches: [ main, qa, develop, domain-* ] | |
# When a Git reference (Git branch or tag) is created | |
create: | |
# A PR merge pushes to `develop` and deletes the PR branch, causing this action to be triggered twice. | |
# So don't trigger on branch delete. Old branches will be deleted on the next mirroring. | |
# delete: | |
# Allow manual triggering | |
workflow_dispatch: | |
jobs: | |
to_internal_repo: | |
# only run this job in the abd-vro repo | |
if: github.repository == 'department-of-veterans-affairs/abd-vro' | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout source code" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "Mirror to internal repo" | |
uses: yesolutions/mirror-action@v0.6 | |
with: | |
REMOTE: ssh://git@github.com/department-of-veterans-affairs/abd-vro-internal.git | |
GIT_USERNAME: ${{ github.actor }} | |
GIT_SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
GIT_SSH_NO_VERIFY_HOST: "true" |