Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
14 changes: 14 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# These are supported funding model platforms

github: flexiondotorg
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
polar: # Replace with a single Polar username
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
92 changes: 92 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
name: 🐛 Bug Report
description: Report a bug or issue
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Please fill out the information below to help us diagnose and fix the issue.

- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Run command: `...`
2. Do something else: `...`
3. Error occurs
value: |
1.
2.
3.
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What you expected to happen
placeholder: Describe the expected outcome
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened
placeholder: Describe what actually occurred
validations:
required: true

- type: textarea
id: error-output
attributes:
label: Error Output
description: Full error message or output (if any)
render: shell
placeholder: Paste the complete error message here
validations:
required: false

- type: input
id: version
attributes:
label: Version
description: The version or commit hash of this project you are using
placeholder: e.g., 1.0.0, latest main branch, commit abc123def
validations:
required: true

- type: textarea
id: environment
attributes:
label: Environment
description: Any relevant environment details
placeholder: e.g., operating system, runtime version, browser, container
validations:
required: false

- type: textarea
id: additional-context
attributes:
label: Additional Context
description: Any other context about the problem
placeholder: Add any other relevant information, screenshots, or context
validations:
required: false

- type: checkboxes
id: terms
attributes:
label: Checklist
description: Please confirm the following
options:
- label: I have searched existing issues to avoid duplicates
required: true
- label: I have provided all the requested information above
required: true
- label: I can reproduce this issue consistently
required: false
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: 🛟 Support
url: https://github.com/linuxmatters/ffmpeg-statigo/blob/HEAD/SUPPORT.md
about: Check the support guide before opening an issue.
# - name: Code of Conduct Report
# url: https://yourproject.org/community-report/
# about: Report a Code of Conduct violation privately to the moderation team.
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: ✨ Feature Request
description: Suggest a new feature or enhancement
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Please provide details about your idea below.

- type: textarea
id: problem
attributes:
label: Problem Statement
description: Is your feature request related to a problem? Please describe.
placeholder: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: true

- type: textarea
id: solution
attributes:
label: Proposed Solution
description: Describe the solution you'd like
placeholder: A clear and concise description of what you want to happen.
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Alternatives Considered
description: Describe alternatives you've considered
placeholder: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false

- type: textarea
id: use-case
attributes:
label: Use Case
description: Describe your specific use case
placeholder: How would you use this feature? What workflow would it improve?
validations:
required: true

- type: textarea
id: additional-context
attributes:
label: Additional Context
description: Add any other context about the feature request
placeholder: Add any other context, screenshots, mockups, or examples about the feature request here.
validations:
required: false

- type: checkboxes
id: terms
attributes:
label: Checklist
description: Please confirm the following
options:
- label: I have searched existing issues to avoid duplicates
required: true
- label: I have considered if this feature fits the project scope
required: true
14 changes: 14 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Description

<!-- Summarise the change along with relevant motivation and context. -->

Closes #

## Additional Context

<!-- Add any other context, screenshots, or examples about the pull request here. -->

## Checklist

- [ ] I have performed a self-review of my code
- [ ] I have tested my changes and confirmed there are no regressions
52 changes: 52 additions & 0 deletions .github/workflows/tailor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Tailor 🪡
on:
schedule:
- cron: "0 9 * * 1" # Weekly
workflow_dispatch:

permissions:
contents: write
issues: write
pull-requests: write
actions: write

jobs:
alter:
runs-on: ubuntu-slim
env:
GH_TOKEN: ${{ secrets.TAILOR_TOKEN || secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v6

- name: Tailor
uses: wimpysworld/tailor@v0
with:
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2: Pass the configured GH_TOKEN to create-pull-request; otherwise the step falls back to the default GITHUB_TOKEN and the generated PR won't trigger normal PR/push workflows.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/tailor.yml, line 23:

<comment>Pass the configured `GH_TOKEN` to `create-pull-request`; otherwise the step falls back to the default `GITHUB_TOKEN` and the generated PR won't trigger normal PR/push workflows.</comment>

<file context>
@@ -0,0 +1,52 @@
+
+      - name: Tailor
+        uses: wimpysworld/tailor@v0
+        with:
+          alter: true
+
</file context>

alter: true

- name: Create PR
uses: peter-evans/create-pull-request@v8
with:
branch: tailor-alter
title: "chore: alter tailor swatches"

update-flake-lock:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v6

- name: Check for flake.lock
id: check
run: test -f flake.lock && echo "found=true" >> "$GITHUB_OUTPUT" || echo "found=false" >> "$GITHUB_OUTPUT"

- name: Install Nix
if: steps.check.outputs.found == 'true'
uses: DeterminateSystems/determinate-nix-action@v3

- name: Update flake.lock
if: steps.check.outputs.found == 'true'
uses: DeterminateSystems/update-flake-lock@v28
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2: Provide a PAT/App token to update-flake-lock; with the default GitHub Actions identity, the generated PR will not trigger this repository's normal PR checks.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/tailor.yml, line 50:

<comment>Provide a PAT/App token to `update-flake-lock`; with the default GitHub Actions identity, the generated PR will not trigger this repository's normal PR checks.</comment>

<file context>
@@ -0,0 +1,52 @@
+
+      - name: Update flake.lock
+        if: steps.check.outputs.found == 'true'
+        uses: DeterminateSystems/update-flake-lock@v28
+        with:
+          pr-title: "chore: update flake.lock"
</file context>

with:
pr-title: "chore: update flake.lock"
133 changes: 133 additions & 0 deletions .tailor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
# Initially fitted by tailor on 2026-03-12
license: GPL-3.0

repository:
description: Real FFmpeg bindings for Go. Not a wrapper. Not a CLI tool. The actual libraries 📚
homepage: https://linuxmatters.sh
has_wiki: false
has_discussions: false
has_projects: false
has_issues: true
allow_merge_commit: false
allow_squash_merge: true
allow_rebase_merge: true
squash_merge_commit_title: COMMIT_OR_PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
merge_commit_title: MERGE_MESSAGE
merge_commit_message: PR_TITLE
delete_branch_on_merge: true
allow_update_branch: false
allow_auto_merge: false
Comment thread
cubic-dev-ai[bot] marked this conversation as resolved.
Outdated
web_commit_signoff_required: false
default_workflow_permissions: read
can_approve_pull_request_reviews: false
topics:
- ffmpeg
- go
- go-bindings
- go-library
- go-module

labels:
- name: bug
color: d20f39
description: "Something isn't working"

- name: documentation
color: 04a5e5
description: Documentation improvement

- name: duplicate
color: 8839ef
description: Already exists

- name: enhancement
color: 1e66f5
description: New feature request

- name: good first issue
color: 40a02b
description: Good for newcomers

- name: help wanted
color: 179299
description: Extra attention needed

- name: invalid
color: e64553
description: Not valid or relevant

- name: question
color: 7287fd
description: Needs more information

- name: wontfix
color: dc8a78
description: Will not be worked on

- name: dependencies
color: fe640b
description: Dependency update

- name: github_actions
color: ea76cb
description: GitHub Actions update

- name: hacktoberfest-accepted
color: df8e1d
description: Hacktoberfest contribution

swatches:
- path: .github/workflows/tailor.yml
alteration: always

- path: .github/dependabot.yml
alteration: first-fit

- path: .github/FUNDING.yml
alteration: first-fit

- path: .github/ISSUE_TEMPLATE/bug_report.yml
alteration: always

- path: .github/ISSUE_TEMPLATE/feature_request.yml
alteration: always

- path: .github/ISSUE_TEMPLATE/config.yml
alteration: first-fit

- path: .github/pull_request_template.md
alteration: always

- path: SECURITY.md
alteration: always

- path: CODE_OF_CONDUCT.md
alteration: always

- path: CONTRIBUTING.md
alteration: always

- path: SUPPORT.md
alteration: always

- path: justfile
alteration: first-fit

- path: flake.nix
alteration: first-fit

- path: .gitignore
alteration: first-fit

- path: .envrc
alteration: first-fit

- path: cubic.yaml
alteration: first-fit

- path: .tailor.yml
alteration: always

- path: .github/workflows/tailor-automerge.yml
alteration: triggered
Loading
Loading