Skip to content
Open
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
9 changes: 0 additions & 9 deletions .github/workflows/convert-unmanaged-to-managed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,6 @@ jobs:
environment: ${{ needs.get-environment-from-domain.outputs.subdomain }}
steps:
- uses: actions/checkout@v2

# Some Dataverse calls in this workflow cannot run async. Therefore, they will fail
# If someone runs more than one workflow against the environment at the same time.
# To prevent this, wait for other workflows queued up to finish before continuing
- name: queue-environment
id: queue-environment
uses: devkeydet/action-environment-queue@v1
with:
environment: ${{ needs.get-environment-from-domain.outputs.subdomain }}

- name: convert-unmanaged-to-managed
uses: ./.github/actions/convert-unmanaged-to-managed
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/delete-and-import-unmanaged-solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,6 @@ jobs:
- name: set-pac-path
uses: ./.github/actions/set-pac-path

# Some Dataverse calls in this workflow cannot run async. Therefore, they will fail
# If someone runs more than one workflow against the environment at the same time.
# To prevent this, wait for other workflows queued up to finish before continuing
- name: queue-environment
id: queue-environment
uses: devkeydet/action-environment-queue@v1
with:
environment: ${{ needs.get-environment-from-domain.outputs.subdomain }}

- name: delete-unmanaged-solution-and-components-from-environment
uses: ./.github/actions/delete-unmanaged-solution-and-components-from-environment
with:
Expand Down Expand Up @@ -82,6 +73,7 @@ jobs:
app-id: ${{ secrets.CLIENT_ID }}
client-secret: ${{ secrets.CLIENT_SECRET }}
tenant-id: ${{ secrets.TENANT_ID }}
run-asynchronously: true

import-data-and-turn-on-flows:
runs-on: windows-2022
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

# Some Dataverse calls in this workflow cannot run async. Therefore, they will fail
# If someone runs more than one workflow against the environment at the same time.
# To prevent this, wait for other workflows queued up to finish before continuing
- name: queue-environment
id: queue-environment
uses: devkeydet/action-environment-queue@v1
with:
environment: ${{ needs.get-environment-from-domain.outputs.subdomain }}

- name: delete-unmanaged-solution-and-components-from-environment
uses: ./.github/actions/delete-unmanaged-solution-and-components-from-environment
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/export-unpack-commit-solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,14 @@ jobs:
run: |
git checkout -b ${{ github.event.inputs.branch_to_create }} ${{ github.event.inputs.source_branch }}

# Some Dataverse calls in this workflow cannot run async. Therefore, they will fail
# If someone runs more than one workflow against the environment at the same time.
# To prevent this, wait for other workflows queued up to finish before continuing
- name: queue-environment
id: queue-environment
uses: devkeydet/action-environment-queue@v1
with:
environment: ${{ needs.get-environment-from-domain.outputs.subdomain }}

- name: publish-customizations
uses: microsoft/powerplatform-actions/publish-solution@latest
with:
environment-url: ${{ github.event.inputs.environment_url}}
app-id: ${{ secrets.CLIENT_ID }}
client-secret: ${{ secrets.CLIENT_SECRET }}
tenant-id: ${{ secrets.TENANT_ID }}
run-asynchronously: true

- name: export-unmanaged-solution
uses: microsoft/powerplatform-actions/export-solution@latest
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/import-unmanaged-solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,6 @@ jobs:
steps:
- uses: actions/checkout@v2

# Some Dataverse calls in this workflow cannot run async. Therefore, they will fail
# If someone runs more than one workflow against the environment at the same time.
# To prevent this, wait for other workflows queued up to finish before continuing
- name: queue-environment
id: queue-environment
uses: devkeydet/action-environment-queue@v1
with:
environment: ${{ needs.get-environment-from-domain.outputs.subdomain }}

- name: build-solution
uses: ./.github/actions/build-solution
with:
Expand All @@ -69,6 +60,7 @@ jobs:
app-id: ${{ secrets.CLIENT_ID }}
client-secret: ${{ secrets.CLIENT_SECRET }}
tenant-id: ${{ secrets.TENANT_ID }}
run-asynchronously: true

import-data-turn-on-flows:
runs-on: windows-2022
Expand Down