https://github.com/globus/workflows
Reusable github workflows
https://github.com/globus/workflows
Last synced: 6 months ago
JSON representation
Reusable github workflows
- Host: GitHub
- URL: https://github.com/globus/workflows
- Owner: globus
- Created: 2021-12-06T21:57:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-10-03T11:06:34.000Z (10 months ago)
- Last Synced: 2025-10-27T14:07:11.455Z (9 months ago)
- Size: 53.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Codeowners: .github/CODEOWNERS
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
```