An open API service indexing awesome lists of open source software.

https://github.com/globus/workflows

Reusable github workflows
https://github.com/globus/workflows

Last synced: 6 months ago
JSON representation

Reusable github workflows

Awesome Lists containing this project

README

          

# Reusable Workflows

This repository defines reusable workflows for use within Globus.

## Workflows

### pr_has_changelog

Check if a PR has changelog fragments in `changelog.d/`, identified as new
files with a desired suffix (`.md`).

Usage example:

```yaml
name: Validate main PR

on:
pull_request:
branches:
- main

jobs:
check_changelog:
uses: globus/workflows/.github/workflows/pr_has_changelog.yaml@v1
```