mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-21 18:48:45 -04:00
Revert Revert Makefile but it works plz
This commit is contained in:
6
.github/workflows/buildapp.yml
vendored
6
.github/workflows/buildapp.yml
vendored
@@ -47,10 +47,6 @@ on:
|
||||
required: false
|
||||
type: boolean
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build YTLitePlus
|
||||
@@ -234,7 +230,7 @@ jobs:
|
||||
- name: Job Summary - Artifact Upload
|
||||
if: ${{ inputs.upload_artifact }}
|
||||
run: |
|
||||
echo -e '### 📦 Artifact Upload\n\nThe artifact was uploaded successfully! [Scroll down](#artifacts) to view the artifact. Note that you must be signed in to GitHub to download it.' >> $GITHUB_STEP_SUMMARY
|
||||
echo -e '### 📦 Artifact Upload\n\nThe artifact was uploaded successfully! Refresh and [scroll down](#artifacts) to view the artifact. Note that you must be signed in to GitHub to download it.' >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
- name: Job Summary - Catbox Upload
|
||||
if: ${{ inputs.catbox_upload}}
|
||||
|
9
.github/workflows/delete-workflow-runs.yml
vendored
9
.github/workflows/delete-workflow-runs.yml
vendored
@@ -1,3 +1,5 @@
|
||||
# This is based on the example at https://github.com/marketplace/actions/delete-workflow-runs
|
||||
|
||||
name: Delete old workflow runs
|
||||
on:
|
||||
workflow_dispatch:
|
||||
@@ -5,15 +7,15 @@ on:
|
||||
days:
|
||||
description: 'Days-worth of runs to keep for each workflow'
|
||||
required: true
|
||||
default: '7' # default value is "30"
|
||||
default: '0'
|
||||
minimum_runs:
|
||||
description: 'Minimum runs to keep for each workflow'
|
||||
required: true
|
||||
default: '5' # default value is "6"
|
||||
default: '0'
|
||||
delete_workflow_pattern:
|
||||
description: 'Name or filename of the workflow (if not set, all workflows are targeted)'
|
||||
required: false
|
||||
default: 'Build and Release YTLitePlus' # default value is ""
|
||||
default: 'Build and Release YTLitePlus'
|
||||
delete_workflow_by_state_pattern:
|
||||
description: 'Filter workflows by state: active, deleted, disabled_fork, disabled_inactivity, disabled_manually'
|
||||
required: true
|
||||
@@ -40,6 +42,7 @@ on:
|
||||
- success
|
||||
dry_run:
|
||||
description: 'Logs simulated changes, no deletions are performed'
|
||||
type: boolean
|
||||
required: false
|
||||
|
||||
jobs:
|
||||
|
Reference in New Issue
Block a user