Compare commits

..

No commits in common. "47b2acd39dc412ab14a951982b96038e151877e7" and "02e40c32e80f2c28a114400ececd8d4c75ac8b7d" have entirely different histories.

3 changed files with 4 additions and 15 deletions

View file

@ -3,17 +3,6 @@ on:
schedule:
- cron: '45 11 * * 0'
workflow_dispatch:
inputs:
days:
description: 'retain days'
required: true
default: 15
type: choice
options:
- 1
- 2
- 7
- 15
jobs:
del_runs:
@ -27,5 +16,5 @@ jobs:
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: ${{ github.event.inputs.days }}
retain_days: 30
keep_minimum_runs: 7

View file

@ -84,13 +84,13 @@ jobs:
- name: notfound
if: (steps.create.outputs.created == 'false')
run: |
SUMMARY=$'Branch ${{ needs.check_image.outputs.version }} has not been created.'
SUMMARY=$'Branch ${{ steps.dotclear.outputs.version }} has not been created.'
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
- name: found
if: (steps.create.outputs.created == 'true')
run: |
SUMMARY=$' Branch ${{ needs.check_image.outputs.version }} has been created.'
SUMMARY=$' Branch ${{ steps.dotclear.outputs.version }} has been created.'
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
do_image:

View file

@ -136,7 +136,7 @@ RUN curl -fsSL -o plugin.zip "https://github.com/JcDenis/dcLog/releases/download
&& rm plugin.zip
# sysInfo
ENV VER_SI=9.8
ENV VER_SI=9.7
RUN curl -fsSL -o plugin.zip "https://github.com/franck-paul/sysInfo/releases/download/$VER_SI/plugin-sysInfo-$VER_SI.zip" \
&& mkdir -p /var/lib/dotclear/plugins/sysInfo \
&& unzip -d /var/lib/dotclear/plugins plugin.zip \