From d6158cd2142d90fe61ec219f9e0c9d46ed9a09ed Mon Sep 17 00:00:00 2001 From: eduardomoralesmartines618-pixel Date: Sun, 5 Apr 2026 12:53:26 -0600 Subject: [PATCH] Create Distcheck MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit graph TD A[🚀 EVENTO: Push o Pull Request] --> B{¿Es documentación?} B -->|SÍ| C[⏭️ Ignorar / No compilar] B -->|NO| D[🔄 INICIAR PIPELINE] D --> E[🏗️ JOB: BUILD] D --> F[📊 JOB: COVERALLS] D --> G[🛠️ JOB: MESON] D --> H[📦 JOB: DISTCHECK] D --> I[⏳ JOB: COMPAT] D --> J[🖥️ JOB: ARCH] D --> K[🔌 JOB: OPENWRT] %% --- DETALLE BUILD --- E --> E1[📥 Checkout] E1 --> E2[🛠️ Setup Ubuntu] E2 --> E3[⚙️ Configure] E3 --> E4[🧪 Code Check] E4 --> E5[🏗️ Compilar] E5 --> E6[✅ Test / Check] E6 --> E7[📦 Instalar] %% --- DETALLE OPENWRT --- K --> K1[📥 Checkout] K1 --> K2[🛠️ Setup] K2 --> K3[💾 Ver Cache] K3 --> K4{¿Existe?} K4 -->|NO| K5[⬇️ Descargar SDK] K4 -->|SÍ| K6[⚡ Usar Cache] K5 --> K7[📂 Extraer .tar.xz] K7 --> K8[🔧 Configurar] K6 --> K8 K8 --> K9[🏗️ Make] K9 --> K10[✅ Verificar] --- Distcheck | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Distcheck diff --git a/Distcheck b/Distcheck new file mode 100644 index 00000000000..6ccc894aadb --- /dev/null +++ b/Distcheck @@ -0,0 +1,27 @@ +# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/actions/stale +name: Mark stale issues and pull requests + +on: + schedule: + - cron: '36 13 * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'Stale issue message' + stale-pr-message: 'Stale pull request message' + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity'