diff options
author | 2021-11-14 15:26:16 -0600 | |
---|---|---|
committer | 2021-11-14 15:26:16 -0600 | |
commit | 5c44d07830b3599438c6796df8442387a48f98b7 (patch) | |
tree | a325005e5358bec12982212fddd4c6d0662630f3 | |
parent | 753d51ebb4c61bcf4ad1a7eed3f508d351b0fd85 (diff) | |
download | astro-5c44d07830b3599438c6796df8442387a48f98b7.tar.gz astro-5c44d07830b3599438c6796df8442387a48f98b7.tar.zst astro-5c44d07830b3599438c6796df8442387a48f98b7.zip |
Revert "add mirror-template example"
This reverts commit 753d51ebb4c61bcf4ad1a7eed3f508d351b0fd85.
-rw-r--r-- | .github/workflows/mirror-templates.yml | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/.github/workflows/mirror-templates.yml b/.github/workflows/mirror-templates.yml deleted file mode 100644 index 15c4b4af9..000000000 --- a/.github/workflows/mirror-templates.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: 'Mirror Templates' - -on: - push: - branches: - - main - tags: - - '*' - -env: - GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} - -jobs: - packages_split: - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - # define package to repository map - package: - - - local_path: 'minimal' - split_repository: 'astro-template-minimal' - - steps: - - uses: actions/checkout@v2 - - # no tag - - - if: "!startsWith(github.ref, 'refs/tags/')" - uses: "symplify/monorepo-split-github-action@2.1" - with: - # ↓ split "packages/easy-coding-standard" directory - package_directory: 'examples/${{ matrix.package.local_path }}' - - # ↓ into https://github.com/symplify/easy-coding-standard repository - repository_organization: 'natemoo-re' - repository_name: '${{ matrix.package.split_repository }}' - - # with tag - - - if: "startsWith(github.ref, 'refs/tags/')" - uses: "symplify/monorepo-split-github-action@2.1" - with: - tag: ${GITHUB_REF#refs/tags/} - - # ↓ split "packages/easy-coding-standard" directory - package_directory: 'examples/${{ matrix.package.local_path }}' - - # ↓ into https://github.com/symplify/easy-coding-standard repository - repository_organization: 'natemoo-re' - repository_name: '${{ matrix.package.split_repository }}' |