Skip to content

Organization documentation, template files, workflows and descriptions

Notifications You must be signed in to change notification settings

goat-community/.github

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.github

A special repository used to store documentation, templates, workflows, and descriptions for our organization. It is also used to provide default documents for all repositories. When a repository is created within our organization, it will automatically inherit the contents of the .github repository.

Github Action Workflows

Sync Labels

Description

Syncs labels accross repositories of the organization.

It should run on push.

Requirements

The labels are configured in a YAML file located in .github/labels.yml in this repo. The repositories must be specified in the call-label-syncer.yml workflow. This workflow requires to have permissions in order to operate on other repositories so you must specify a personal access token (PAT) in your secrets.

Inputs

secrets description required
PAT personal access token true
inputs description required default
labels.yml Label configuration (desc, color, text) true .github/labels.yml
repositories repositories list (e.g goat-community/goat) true

Example Usage

name: "Sync labels"

on:
  push:
    paths:
      - '.github/labels.yml'
      - '.github/workflows/call-label-syncer.yml'
    branches:
      - main
jobs:
  build:
    name: Sync labels
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: micnncim/[email protected]
        with:
            manifest: .github/labels.yml
            repository: |
                goat-community/goat
            token: ${{ secrets.PAT }}

.github/labels.yml

- name: api
  color: f77c47
  description: Everything related the API.
- name: devops
  color: ed2d69
  description: Devops related

Apply Issue Labels to PR

Description

Applies labels from linked issues to pull requests. It should run on a workflow call.

name: "Apply issue labels to PR"

on:
  pull_request_target:
    types:
      - opened

jobs:
  label-on-pr:
    name: pr-apply-label
    uses: "goat-community/.github/.github/workflows/pr-apply-issue-labels.yml@main"
    permissions:
      contents: none
      issues: read
      pull-requests: write
    secrets: inherit

About

Organization documentation, template files, workflows and descriptions

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published