-
Learn about the composition of an Activity Log Alert in Azure
The composition of an Activity Log Alert in Azure involves several key components that work together to monitor and notify you about specific activities or events within your Azure environment. These components allow you to customize the alert to monitor specific actions, events, and conditions.… [ Read More ]
-
Learn the best practices for creating Actions in GitHub
Learn the best practices for creating Actions in GitHub GitHub Actions are powerful tools for automating workflows within repositories. Creating effective, maintainable, and secure actions is essential for a smooth CI/CD pipeline. Here are some best practices for creating actions. 1. Organize and Structure Your… [ Read More ]
-
Exploring the Workflow Badges in GitHub
Exploring the Workflow Badges in GitHub Workflow badges provide a visual indicator of the status of workflows (e.g., build status, test results) directly within your repository. These badges help developers and collaborators quickly understand the health of the CI/CD pipeline at a glance. Types of… [ Read More ]
-
Learn how to share artifacts between jobs in GitHub CI/CD workflows
Learn how to share artifacts between jobs in GitHub CI/CD workflows In GitHub Actions, artifacts allow files or directories to be shared between jobs in a workflow. This can be useful for passing data, build outputs, test results, or deployment artifacts across different steps or… [ Read More ]
-
Examining environment variables in GitHub CI workflows
Examining environment variables in GitHub CI workflows Environment variables in GitHub Actions provide a way to store and access sensitive information, configuration values, or temporary data across jobs and steps in CI/CD workflows. These variables are critical for managing secrets, configuring build environments, and ensuring… [ Read More ]
-
Learning continuous integration (CI) with Actions in GitHub
Learning continuous integration (CI) with Actions in GitHub Continuous Integration (CI) is a software development practice where code changes are automatically built, tested, and validated upon integration into a shared repository. GitHub Actions provides a seamless way to implement CI pipelines directly within your GitHub… [ Read More ]
-
Hands-on demo – Testing an Action in GitHub
Hands-on demo – Testing an Action in GitHub Below is a step-by-step demo to test a custom GitHub Action. We'll create a local test workflow to validate the action's functionality. Prerequisites A GitHub repository with a custom action defined (e.g., JavaScript/TypeScript or Docker-based). Basic knowledge… [ Read More ]
-
What is self-service password reset in Microsoft Entra ID and how to do it
Self-Service Password Reset (SSPR) is a feature in Microsoft Entra ID (formerly Azure AD) that allows users to reset their own passwords without the need for IT support. This improves user productivity by reducing helpdesk workload, speeds up the password recovery process, and enhances security… [ Read More ]
-
Release management for GitHub Actions
Release management for GitHub Actions Releasing and testing a GitHub Action are critical steps for ensuring the action works as intended and is stable for users. Here's a detailed breakdown of the process, including best practices for release management and testing. To release a GitHub… [ Read More ]
-
Learn when to use Activity Log Alerts in Azure
Activity Log Alerts in Azure are used to monitor and get notified about specific events that occur within your Azure subscription. The Azure Activity Log provides a record of all management operations performed on your resources, such as create, update, delete, or other administrative activities.… [ Read More ]