mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 15:48:05 +00:00
Some checks are pending
🚦 Security & Quality Gate / 🚑 Expo Doctor Check (push) Waiting to run
🏗️ Build Apps / 🤖 Build Android APK (Phone) (push) Waiting to run
🏗️ Build Apps / 🤖 Build Android APK (TV) (push) Waiting to run
🏗️ Build Apps / 🍎 Build iOS IPA (Phone) (push) Waiting to run
🏗️ Build Apps / 🍎 Build iOS IPA (Phone - Unsigned) (push) Waiting to run
🔒 Lockfile Consistency Check / 🔍 Check bun.lock and package.json consistency (push) Waiting to run
🛡️ CodeQL Analysis / 🔎 Analyze with CodeQL (actions) (push) Waiting to run
🛡️ CodeQL Analysis / 🔎 Analyze with CodeQL (javascript-typescript) (push) Waiting to run
🏷️🔀Merge Conflict Labeler / 🏷️ Labeling Merge Conflicts (push) Waiting to run
🚦 Security & Quality Gate / 📝 Validate PR Title (push) Waiting to run
🚦 Security & Quality Gate / 🔍 Vulnerable Dependencies (push) Waiting to run
🚦 Security & Quality Gate / 🔍 Lint & Test (check) (push) Waiting to run
🚦 Security & Quality Gate / 🔍 Lint & Test (format) (push) Waiting to run
🚦 Security & Quality Gate / 🔍 Lint & Test (lint) (push) Waiting to run
🚦 Security & Quality Gate / 🔍 Lint & Test (typecheck) (push) Waiting to run
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
68 lines
2.3 KiB
YAML
68 lines
2.3 KiB
YAML
name: 🐛 Update Bug Report Template
|
|
|
|
on:
|
|
release:
|
|
types: [published] # Run on every published release on any branch
|
|
|
|
concurrency:
|
|
group: update-issue-form-${{ github.event.release.tag_name || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
update-bug-report:
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
issues: write
|
|
runs-on: ubuntu-24.04
|
|
|
|
steps:
|
|
- name: 📥 Checkout repository
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
|
|
- name: "🟢 Setup Node.js"
|
|
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
|
|
with:
|
|
node-version: '24.x'
|
|
cache: 'npm'
|
|
|
|
- name: 🔍 Extract minor version from app.json
|
|
id: minor
|
|
uses: actions/github-script@main
|
|
with:
|
|
result-encoding: string
|
|
script: |
|
|
const fs = require('fs-extra');
|
|
const semver = require('semver');
|
|
const content = fs.readJsonSync('./app.json');
|
|
const version = content.expo.version;
|
|
const minorVersion = semver.minor(version);
|
|
return minorVersion.toString();
|
|
|
|
- name: 📝 Update bug report version
|
|
uses: ShaMan123/gha-populate-form-version@be012141ca560dbb92156e3fe098c46035f6260d #v2.0.5
|
|
with:
|
|
semver: '^0.${{ steps.minor.outputs.result }}.0'
|
|
dry_run: no-push
|
|
|
|
- name: ⚙️ Update bug report node version dropdown
|
|
uses: ShaMan123/gha-populate-form-version@be012141ca560dbb92156e3fe098c46035f6260d #v2.0.5
|
|
with:
|
|
dropdown: _node_version
|
|
package: node
|
|
semver: '>=24.0.0'
|
|
dry_run: no-push
|
|
|
|
- name: 📬 Commit and create pull request
|
|
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
|
|
with:
|
|
add-paths: .github/ISSUE_TEMPLATE/bug_report.yml
|
|
branch: ci-update-bug-report
|
|
base: develop
|
|
delete-branch: true
|
|
labels: ⚙️ ci, 🤖 github-actions
|
|
title: 'chore(): Update bug report template to match release version'
|
|
body: |
|
|
Automated update to `.github/ISSUE_TEMPLATE/bug_report.yml`
|
|
Triggered by workflow run [${{ github.run_id }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
|