From dbcd70c4b48858c11313036e1811fad1b8bb8f07 Mon Sep 17 00:00:00 2001 From: Mitch Negus Date: Fri, 12 Sep 2025 10:10:10 -0600 Subject: [PATCH] chore: Use FIREWHEEL CI workflows --- .github/workflows/pr-title-checker.yml | 15 +++++++++++++++ .github/workflows/release-drafter.yml | 19 +++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .github/workflows/pr-title-checker.yml create mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/workflows/pr-title-checker.yml b/.github/workflows/pr-title-checker.yml new file mode 100644 index 0000000..237f911 --- /dev/null +++ b/.github/workflows/pr-title-checker.yml @@ -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 diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..fb2a085 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -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