{"id":35690974,"url":"https://github.com/andrews-mcmeel-universal/reusable_workflows","last_synced_at":"2026-04-07T22:02:09.464Z","repository":{"id":42008721,"uuid":"465049306","full_name":"Andrews-McMeel-Universal/reusable_workflows","owner":"Andrews-McMeel-Universal","description":"Reusable GitHub Workflows","archived":false,"fork":false,"pushed_at":"2026-04-07T16:55:06.000Z","size":1037,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-04-07T18:14:08.836Z","etag":null,"topics":["actions","azure","cicd","gitops","helm","k8s","kubernetes"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Andrews-McMeel-Universal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-03-01T20:39:41.000Z","updated_at":"2026-03-12T21:58:27.000Z","dependencies_parsed_at":"2026-01-06T17:09:57.445Z","dependency_job_id":null,"html_url":"https://github.com/Andrews-McMeel-Universal/reusable_workflows","commit_stats":null,"previous_names":[],"tags_count":401,"template":false,"template_full_name":null,"purl":"pkg:github/Andrews-McMeel-Universal/reusable_workflows","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrews-McMeel-Universal%2Freusable_workflows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrews-McMeel-Universal%2Freusable_workflows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrews-McMeel-Universal%2Freusable_workflows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrews-McMeel-Universal%2Freusable_workflows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Andrews-McMeel-Universal","download_url":"https://codeload.github.com/Andrews-McMeel-Universal/reusable_workflows/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrews-McMeel-Universal%2Freusable_workflows/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31530647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","azure","cicd","gitops","helm","k8s","kubernetes"],"created_at":"2026-01-05T23:16:09.894Z","updated_at":"2026-04-07T22:02:09.445Z","avatar_url":"https://github.com/Andrews-McMeel-Universal.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Reusable GitHub Actions Workflows\n\nThis repository contains a set of reusable workflows for GitHub Actions. These workflows are designed to automate various tasks such as deployments, PR checks, Azure object updates, and more across multiple repositories.\n\n## How to Use\n\nTo use these workflows, reference them in your GitHub Actions workflow file using the `uses:` directive. This directive should include the path to the reusable workflow in this repository, `Andrews-McMeel-Universal/reusable_workflows/.github/workflows/`, followed by the specific workflow name.\n\n## Workflow Examples\n\n### Codeowners File Validation\n\nThis workflow checks the validity of the CODEOWNERS file in your repository.\n\n```YAML\ncodeowners-validation:\n  if: ${{ github.actor != 'dependabot[bot]' }}\n  name: Codeowners File Validation\n  uses: Andrews-McMeel-Universal/reusable_workflows/.github/workflows/codeowners-validation.yaml@2\n```\n\n### Jira PR Linter\n\nThis workflow checks PRs for Jira ticket references and performs other compliance checks.\n\n```YAML\njira-lint:\n  if: ${{ github.actor != 'dependabot[bot]' \u0026\u0026 github.actor != 'amutechtest' \u0026\u0026 github.ref != 'refs/heads/development' \u0026\u0026 github.ref != 'refs/heads/main' }}\n  name: Jira PR Linter\n  uses: Andrews-McMeel-Universal/reusable_workflows/.github/workflows/jira-lint.yaml@2\n  with:\n    fail-on-error: true\n    skip-comments: false\n  secrets:\n    JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }}\n```\n\n## Workflow Versioning\n\nYou can reference workflows by either a tag or a branch from this repository.\n\n- To reference a specific release (for a static copy of the workflows at that point):\n\n```YAML\nAndrews-McMeel-Universal/reusable_workflows/.github/workflows/aks-deploy.yaml@2\n```\n\n- To reference a specific branch:\n\n```YAML\nAndrews-McMeel-Universal/reusable_workflows/.github/workflows/aks-deploy.yaml@DEVOPS-fix-aks-deploy-bug\n```\n\n## Integration of Reusable Workflows\n\nAfter a pull request is merged into _main_, you can create a new release to use it as a reusable workflow. Follow the instructions in this guide to create a new release: [Creating a Release](https://amuniversal.atlassian.net/wiki/spaces/TD/pages/3452043300/Creating+a+new+GitHub+Release#Creating-a-release)\n\n### Updating Major Release\n\nAfter creating a new release, you can use the [Update Major Release Workflow](https://github.com/Andrews-McMeel-Universal/reusable_workflows/actions/workflows/update-major-release.yaml) to automatically update the major release tag for the repository.\n\n1. Navigate to the [Update Major Release](https://github.com/Andrews-McMeel-Universal/reusable_workflows/actions/workflows/update-major-release.yaml) workflow.\n1. Click \"Run workflow\" on the right-hand side of the page.\n1. Specify the tag to create a major release for and what the major release will be.\n1. Click \"Run workflow\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrews-mcmeel-universal%2Freusable_workflows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrews-mcmeel-universal%2Freusable_workflows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrews-mcmeel-universal%2Freusable_workflows/lists"}