Created a GitHub Actions Reusable Workflows Repository for Personal Use
I created a GitHub Actions Reusable Workflows repository for my personal use. What Are GitHub Actions Reusable Workflows? GitHub Actions’ reusable workflows is a mechanism that allows workflow files to be called from other repositories. For example, you can call a workflow from another repository like this: jobs: example: uses: masutaka/actions/.github/workflows/some-workflow.yml@main Since you can consolidate common processes in one place, it saves you the trouble of managing the same workflow across multiple repositories. ...