chore: update to latest fixed action #166
Workflow file for this run
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 | |
on: | |
release: | |
types: [published] | |
push: | |
branches: | |
- split | |
jobs: | |
split-repositories: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Structure of the config tuple is: | |
# 0: Type of package (e.g. open-feature/flagd-*provider*) | |
# 1: Name of package (sans-org-prefix e.g. open-feature/*flagd*-provider) | |
# 2: Name of subdirectory (e.g. providers/*Flagd*) | |
config: | |
- [hook, dd-trace, DDTrace] | |
# - [hook, otel, OpenTelemetry] | |
# - [hook, validator, Validators] | |
# - [provider, cloudbees, CloudBees] | |
# - [provider, flagd, Flagd] | |
# - [provider, split, Split] | |
# - [provider, go-feature-flag, GoFeatureFlag] | |
steps: | |
- name: checkout | |
run: git clone "$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE" && git checkout "$GITHUB_SHA" | |
- name: push-hook-dd-trace | |
uses: tcarrio/[email protected] | |
with: | |
privateKey: ${{ secrets.SSH_PRIVATE_KEY }} | |
targetOrg: open-feature-php | |
targetRepo: ${{ matrix.config[1] }}-${{ matrix.config[0] }} | |
# targetBranch: refs/tags/${{ github.event.release.tag_name }} | |
tagFilter: ^open-feature/${{ matrix.config[1] }}- | |
filterArguments: | | |
--subdirectory-filter "${{matrix.config[0] }}s/${{ matrix.config[2] }}/" \ | |
--tag-rename "open-feature/${{ matrix.config[1] }}-:" \ | |
--force |