(feat) Add hashing of sensitive data to the Ruby gem (#952) #448
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: "Split monorepo into git mirrors" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
split-monorepo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Split repository into git mirrors | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
METRICS_SDK_PHP_PRIVATE_KEY: ${{ secrets.METRICS_SDK_PHP_PRIVATE_KEY }} | |
run: ./bin/split.sh | |
shell: bash |