From 833572f5676dc24b1adbcaa42938e7dcd7953c5f Mon Sep 17 00:00:00 2001 From: ddaggHT Date: Tue, 25 Nov 2025 12:06:49 -0500 Subject: [PATCH] Updating things to match new standards - Codeowners - jira ticket label - pull request template - release template --- .github/CODEOWNERS | 2 ++ .github/pull_request_template.md | 24 ++++++++++++++++++++++++ .github/release.yml | 17 +++++++++++++++++ .github/workflows/actions.yml | 9 +++++++++ 4 files changed, 52 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/pull_request_template.md create mode 100644 .github/release.yml create mode 100644 .github/workflows/actions.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..69f7d5e --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# Default owner(s) +* @flocasts/live-dev diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..0122a5c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,24 @@ + + +### Description + + + +### How Has This Been Tested? + + +### Checklist: + +- [ ] I have read the [Contributing Guidelines](https://go.dev/doc/contribute). +- [ ] I have added the appropriate labels to this PR indicating the change. + - enhancement + - bug + - dependencies + - documentation +- [ ] Tests for the changes have been added (for bug fixes / features). +- [ ] The code has been tested. +- [ ] I have included updates to all appropriate documentation. + +### Associated PRs + +- https://github.com/flocasts/repository/pull/# \ No newline at end of file diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..53e701d --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,17 @@ +changelog: + categories: + - title: 🚀 Features + labels: + - enhancement + - title: 🐛 Bug Fixes + labels: + - bug + - title: 🚀 Dependency Updates + labels: + - dependencies + - title: 📘 Documentation Updates + labels: + - documentation + - title: Other Changes + labels: + - "*" # Catch-all for pull requests that didn't match any of the previous categories diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml new file mode 100644 index 0000000..71e3860 --- /dev/null +++ b/.github/workflows/actions.yml @@ -0,0 +1,9 @@ +name: 'Auto Actions' +on: + pull_request: + types: [opened, ready_for_review] + +jobs: + link-ticket: + name: Link Ticket + uses: flocasts/github-actions/.github/workflows/shared-link-ticket.yaml@main