From c8a80f370069bed719710bd1710f3b3dcedcdad3 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 20 Feb 2025 12:30:45 +0100 Subject: [PATCH] TO-DROP: trigger on push This makes it much more convenient to iterate, in an environment (GitHub Actions) where nothing is convenient about iterating or debugging, nothing whatsoever. Signed-off-by: Johannes Schindelin --- .../remove-packages-from-pacman-repository.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/remove-packages-from-pacman-repository.yml b/.github/workflows/remove-packages-from-pacman-repository.yml index cb90c60..aaf4962 100644 --- a/.github/workflows/remove-packages-from-pacman-repository.yml +++ b/.github/workflows/remove-packages-from-pacman-repository.yml @@ -2,18 +2,11 @@ name: Remove Packages from the Pacman repository run-name: Remove ${{ inputs.packages }} from the Pacman repository on: - workflow_dispatch: - inputs: - packages: - description: 'The package name(s) to remove' - required: true - dry_run: - description: 'Skip deployment (if non-empty)' - required: false + push: env: - PACKAGES_TO_REMOVE: "${{ github.event.inputs.packages }}" - PACMANDRYRUN: "${{ github.event.inputs.dry_run }}" + PACKAGES_TO_REMOVE: "ca-certificates-i686 cyrus-sasl-i686 docbook-xsl-ns-i686 gzip-i686 less-i686 libksba-i686 libksba-devel-i686 libsasl-i686 libsasl-devel-i686 libserf-i686 libserf-devel-i686 libssh2-i686 libssh2-devel-i686 nano-i686 vim-i686 zlib-i686 zlib-devel-i686" + PACMANDRYRUN: "true" GPG_OPTIONS: "--batch --yes --no-tty --list-options no-show-photos --verify-options no-show-photos --pinentry-mode loopback" jobs: