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

Removed push account check, handled by settings instead #493

Merged
merged 1 commit into from
Nov 25, 2024
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
1 change: 0 additions & 1 deletion .github/workflows/CI-CD_MVP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
deploy-mvp-staging:
uses: ./.github/workflows/deploy_azureWebapp.yml
needs: build-dotnet
if: github.repository_owner == 'Sitecore' && ((github.event.pull_request.head.repo.full_name == github.repository) || (github.event_name == 'push') || (github.event_name == 'workflow_dispatch'))
with:
buildConfiguration: Debug
projectLocation: headapps/MvpSite/MvpSite.Rendering
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/CI-CD_SUGCON_24.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
uses: ./.github/workflows/deploy_vercel.yml
needs: build-sugcon24-site
if: always() &&
(github.repository_owner == 'Sitecore' && ((github.event.pull_request.head.repo.full_name == github.repository) || (github.event_name == 'push'))) &&
needs.build-sugcon24-site.result != 'failure' &&
needs.build-sugcon24-site.result != 'cancelled'
secrets:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/CI-CD_SUGCON_24_STORYBOOK.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
uses: ./.github/workflows/deploy_vercel.yml
needs: build-sugcon24-storybook
if: always() &&
(github.repository_owner == 'Sitecore' && ((github.event.pull_request.head.repo.full_name == github.repository) || (github.event_name == 'push'))) &&
needs.build-sugcon24-storybook.result != 'failure' &&
needs.build-sugcon24-storybook.result != 'cancelled'
secrets:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/CI-CD_XM_Cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:

deploy-staging:
uses: ./.github/workflows/deploy_xmCloud.yml
if: github.repository_owner == 'Sitecore' && ((github.event.pull_request.head.repo.full_name == github.repository) || (github.event_name == 'push'))
needs: build-dotnet
with:
environmentName: Staging
Expand Down
Loading