osinfra-io / github-misc-called-workflows

Miscellaneous Reusable GitHub Called Workflow examples.

Home Page:https://www.osinfra.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Miscellaneous Called Workflows

Reusing workflows avoids duplication. This makes workflows easier to maintain and allows you to create new workflows more quickly by building on the work of others, just as you do with actions.

Workflow reuse also promotes best practice by helping you to use workflows that are well designed, have already been tested, and have been proved to be effective. Your organization can build up a library of reusable workflows that can be centrally maintained.

Reusing Workflows

Rather than copying and pasting from one workflow to another, you can make workflows reusable. You and anyone with access to the reusable workflow can then call the reusable workflow from another workflow.

Workflows

Example Add to Project Usage

name: Add To GitHub Projects

on:
  issues:
    types:
      - opened
  pull_request:
    types:
      - opened

jobs:
  add-to-osinfra-project:
    name: Open Source Infrastructure (as Code)
    uses: osinfra-io/github-misc-called-workflows/.github/workflows/add-to-project.yml@v0.0.0
    with:
     project_id: 1
    secrets:
     add_to_project_pat: ${{ secrets.ADD_TO_PROJECT_PAT }}

Example Dependabot Usage

name: Dependabot

on: pull_request_target

jobs:
  dependabot:
    name: Dependabot
    uses: osinfra-io/github-misc-called-workflows/.github/workflows/dependabot.yml@v0.0.0
    secrets:
      pr_approve_and_merge_pat: ${{ secrets.PR_APPROVE_AND_MERGE_PAT }}

About

Miscellaneous Reusable GitHub Called Workflow examples.

https://www.osinfra.io

License:GNU General Public License v2.0