Skip to content

Commit c8a80f3

Browse files
committed
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 <[email protected]>
1 parent 4865b98 commit c8a80f3

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/remove-packages-from-pacman-repository.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,11 @@ name: Remove Packages from the Pacman repository
22
run-name: Remove ${{ inputs.packages }} from the Pacman repository
33

44
on:
5-
workflow_dispatch:
6-
inputs:
7-
packages:
8-
description: 'The package name(s) to remove'
9-
required: true
10-
dry_run:
11-
description: 'Skip deployment (if non-empty)'
12-
required: false
5+
push:
136

147
env:
15-
PACKAGES_TO_REMOVE: "${{ github.event.inputs.packages }}"
16-
PACMANDRYRUN: "${{ github.event.inputs.dry_run }}"
8+
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"
9+
PACMANDRYRUN: "true"
1710
GPG_OPTIONS: "--batch --yes --no-tty --list-options no-show-photos --verify-options no-show-photos --pinentry-mode loopback"
1811

1912
jobs:

0 commit comments

Comments
 (0)