-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from alleyinteractive/remove-scaffold
Remove all references to the alley scaffolder
- Loading branch information
Showing
8 changed files
with
41 additions
and
44 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Merge Develop to Scaffold Branch | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- remove-scaffold | ||
|
||
jobs: | ||
merge-develop-to-scaffold: | ||
name: merge develop to scaffold | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Merge develop to scaffold | ||
shell: bash | ||
env: | ||
DEVELOP_BRANCH: develop | ||
SCAFFOLD_BRANCH: scaffold | ||
|
||
TOKEN: ${{ secrets.GH_TOKEN }} | ||
run: | | ||
git config --global user.name "$GITHUB_ACTOR" | ||
git config --global user.email "[email protected]" | ||
echo "Cloning alleyinteractive/create-wordpress-plugin..." | ||
git clone --recursive --quiet https://[email protected]/alleyinteractive/create-wordpress-plugin.git create-wordpress-plugin -b $SCAFFOLD_BRANCH | ||
cd create-wordpress-plugin | ||
git fetch origin $DEVELOP_BRANCH | ||
git fetch origin $SCAFFOLD_BRANCH | ||
git merge origin/$DEVELOP_BRANCH --no-edit | ||
git push -u origin $SCAFFOLD_BRANCH |
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
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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