terminal-nerds/snippets

View on GitHub
.github/workflows/repository.yml

Summary

Maintainability
Test Coverage
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
---
name: Repository
 
on:
issues:
pull_request_target:
branches: [main]
workflow_dispatch:
 
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
 
defaults:
run:
shell: bash
 
env:
CI: true
 
jobs:
pull-request-codesee-map:
name: Pull Request
# https://github.com/terminal-nerds/.github/blob/main/.github/workflows/codesee-map.yml
uses: terminal-nerds/.github/.github/workflows/codesee-map.yml@main
secrets:
CODESEE_ARCH_DIAG_API_TOKEN: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
 
pull-request-greetings:
name: Pull Request
# https://github.com/terminal-nerds/.github/blob/main/.github/workflows/greetings.yml
uses: terminal-nerds/.github/.github/workflows/greetings.yml@main
 
pull-request-labels:
name: Pull Request
# https://github.com/terminal-nerds/.github/blob/main/.github/workflows/pull-request-labels.yml
uses: terminal-nerds/.github/.github/workflows/pull-request-labels.yml@main
 
issue-labels:
name: Issues
# https://github.com/terminal-nerds/.github/blob/main/.github/workflows/issue-labels.yml
uses: terminal-nerds/.github/.github/workflows/issue-labels.yml@main