Unlocking Manual Workflow Execution in GitHub Actions: A Quick Fix

Screenshot from GitHub Actions showing the workflow tab with the option to run the workflow. The image highlights the 'Run workflow' button, indicating that the workflow can be manually triggered. This option is available, allowing users to initiate the workflow process directly from the GitHub Actions interface.

If you’re working with CI/CD pipelines and GitHub Action workflows, there might be instances where you need to manually run a workflow. However, you might have noticed that when you attempt to do this through the portal, you realize that there’s no option available for manual execution. In this blog post, I’ll provide a quick … Read more

How to Resolve a Transaction Check Error in Yum

If you’re using Yum to manage packages on a Red Hat Enterprise Linux (RHEL) 7 system, you may encounter a transaction check error when trying to install a package. One common error message is similar to: In this case the error message indicates that there is a conflict between two packages: rhui-azure-rhel7-2.2-606.noarch and rhui-azure-rhel7-eus-2.2-602.noarch. Both packages contain a … Read more

azure application gateway data for certificate is invalid error fix

A quick blog post to show a fix for when you get the error data for certificate is invalid error when applying backend settings within Azure Application Gateway. Within the Azure Activity log, you may come across this error: Reviewing the backend settings in the Application Gateway, we can see the snippet: For end-to-end SSL … Read more

Power BI Gateway error when connecting to PostgreSQL fix

A very quick blog post to detail a quick fix I found when attempting to create a Power BI on-premise Gateway connectivity to PostgreSQL. Setting up on-premise gateway and applying fix Setting up a standard on-premise gateway for data integration, following this guide from docs.microsoft Setup installs fine – when attempting to setup a new … Read more

“the input device is not a TTY” fix when running Docker in Azure DevOps

Attempting to run Docker in Azure DevOps and getting error “the input device is not a TTY”? In in this blog post, I will show you a simple fix used to resolve the issue I was having. When attempting to use Docker inside a Bash@3 task; I kept getting the error:- The Docker command I … Read more

AzureRM Deployment Fails: See inner errors for details

Running an Azure RM Template and it errors with: A simple PowerShell command will get you the verbose error log, to assist you with troubleshooting your Azure RM Template, -CorrelationId will be the tracking id mentioned above: With this I was able to find the test storage account name I was attempting to use was … Read more