Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove built branch workflow in favor of updated built release workflow #289

Merged
merged 3 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .github/workflows/built-branch.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/built-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ on:
jobs:
built-release:
uses: alleyinteractive/.github/.github/workflows/built-release.yml@main
if: ${{ github.repository != 'alleyinteractive/create-wordpress-plugin' }}
with:
node: 16
6 changes: 6 additions & 0 deletions .github/workflows/merge-develop-to-scaffold.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# This workflow is used on alleyinteractive/create-wordpress-plugin to merge the
# develop branch into the scaffold branch and is NOT meant to be used on other
# repositories. This workflow will be deleted automatically when the
# configuration script is run.

name: Merge Develop to Scaffold Branch

on:
Expand All @@ -9,6 +14,7 @@ on:
jobs:
merge-develop-to-scaffold:
name: merge develop to scaffold
if: ${{ github.repository == 'alleyinteractive/create-wordpress-plugin' }}
runs-on: ubuntu-latest

steps:
Expand Down
3 changes: 2 additions & 1 deletion configure.php
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,8 @@ function contributing_message( string $message ): void {

echo "\nWelcome friend to alleyinteractive/create-wordpress-plugin! 😀\nLet's setup your WordPress Plugin 🚀\n\n";

// Always delete the 'merge-develop-to-scaffold.yml' file (this is never used in a scaffolded plugins).
// Always delete the 'merge-develop-to-scaffold.yml' file (this is never used in
// a scaffolded plugins).
delete_files( '.github/workflows/merge-develop-to-scaffold.yml' );

$current_dir = getcwd();
Expand Down