Skip to content

Commit

Permalink
Merge pull request #989 from pantheon-systems/fix-release-workflow-run
Browse files Browse the repository at this point in the history
Fix test workflow not running on changeset PRs
  • Loading branch information
backlineint authored Dec 12, 2023
2 parents 6b8a397 + 1c42cbd commit c1a43c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/workflows/canary-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.ACCESS_TOKEN }}
- uses: pnpm/action-setup@v2
with:
version: 8.8.0
Expand Down
15 changes: 5 additions & 10 deletions .github/workflows/release-and-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,22 +81,15 @@ jobs:
# next-drupal-starter
- local_path: 'starters/next-drupal-starter-generated'
split_repository: 'next-drupal-starter'
generator_cmd:
"next-drupal next-drupal-umami-addon --appName
@pantheon-systems/next-drupal-starter --cmsEndpoint ''
--tailwindcss --force --silent"
generator_cmd: "next-drupal next-drupal-umami-addon --appName @pantheon-systems/next-drupal-starter --cmsEndpoint '' --tailwindcss --force --silent"
# gatsby-wordpress-starter
- local_path: 'starters/gatsby-wordpress-starter-generated'
split_repository: 'gatsby-wordpress-starter'
generator_cmd:
"gatsby-wp --appName @pantheon-systems/gatsby-wordpress-starter
--cmsEndpoint '' --tailwindcss --force --silent"
generator_cmd: "gatsby-wp --appName @pantheon-systems/gatsby-wordpress-starter --cmsEndpoint '' --tailwindcss --force --silent"
# next-wordpress-starter
- local_path: 'starters/next-wordpress-starter-generated'
split_repository: 'next-wordpress-starter'
generator_cmd:
"next-wp --appName @pantheon-systems/next-wordpress-starter
--cmsEndpoint '' --tailwindcss --force --silent"
generator_cmd: "next-wp --appName @pantheon-systems/next-wordpress-starter --cmsEndpoint '' --tailwindcss --force --silent"

# docs site
- local_path: 'web'
Expand All @@ -105,6 +98,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.ACCESS_TOKEN }}

- name: Setup node
if: ${{ matrix.generator_cmd != '' }}
Expand Down

0 comments on commit c1a43c6

Please sign in to comment.