Skip to content

Commit

Permalink
TO-DROP: trigger on push
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
dscho committed Feb 20, 2025
1 parent 4865b98 commit c8a80f3
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/remove-packages-from-pacman-repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c8a80f3

Please sign in to comment.