Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This workflow will enforce FIREWHEEL ecosystem standard PR title checking

name: "Lint Pull Request Title"

on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened

jobs:
call-firewheel-pr-title-checker:
uses: sandialabs/firewheel/.github/workflows/pr-title-checker.yml@ci-consistent-ecosystem
19 changes: 19 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This workflow will enforce FIREWHEEL ecosystem standard releases

name: Release Drafter

on:
push:
branches:
- main
pull_request_target:
types:
- opened
- reopened
- synchronize
- labeled
- unlabeled

jobs:
call-firewheel-linting:
uses: sandialabs/firewheel/.github/workflows/release-drafter.yml@ci-consistent-ecosystem
Comment on lines +18 to +19
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
call-firewheel-linting:
uses: sandialabs/firewheel/.github/workflows/release-drafter.yml@ci-consistent-ecosystem
call-firewheel-release-drafter:
uses: sandialabs/firewheel/.github/workflows/release-drafter.yml@ci-consistent-ecosystem
pr-checker:
name: Ensure Proper Pull Request Labels
if: github.event_name == 'pull_request_target'
needs: update_release_draft
permissions:
pull-requests: read
checks: write
runs-on: ubuntu-latest
steps:
- uses: docker://agilepathway/pull-request-label-checker:v1.6.65
with:
any_of: feature,fix,style,changed,refactor,perf,test,build,ci,chore,revert,deprecated,removed,security,documentation,dependencies
repo_token: ${{ secrets.GITHUB_TOKEN }}