Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Default owner(s)
* @flocasts/live-dev
24 changes: 24 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!--- Please fill out the following template, which will help other contributors review your Pull Request. -->

### Description
<!--- Describe your changes. -->
<!--- Why is this change required? What problem does it solve? -->

### How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->

### Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
- [ ] 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
<!--- List all PRs, if any, that must be merged at the same time. -->
- https://github.com/flocasts/repository/pull/#
17 changes: 17 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -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
9 changes: 9 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -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