From 8f3cdee11abee1ca00060682188b1aa6085b4148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C5=8Dan?= Date: Sat, 7 Mar 2026 15:49:58 -0700 Subject: [PATCH] fix: remove deprecated appveyor.yml with exposed Slack webhook token The appveyor.yml file contains an encrypted Slack notification token, uses a Dist::Zilla build workflow inconsistent with the Makefile.PL approach used in the GitHub Actions CI, and targets a CI service no longer actively used for this project (AppVeyor). Windows CI is now handled by the windows.yml GitHub Actions workflow. Co-Authored-By: Claude Opus 4.6 --- appveyor.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index e500923fd..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,27 +0,0 @@ -skip_tags: true - -cache: - - C:\strawberry - -install: - - if not exist "C:\strawberry" cinst strawberryperl -y - - set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH% - - cd C:\projects\%APPVEYOR_PROJECT_NAME% - - cpanm -n Dist::Zilla Pod::Markdown - - dzil authordeps --missing | cpanm -n - - dzil listdeps --author --missing | cpanm - -build_script: - - perl -e 2 - -test_script: - - dzil test - -notifications: - - provider: Slack - auth_token: - secure: 1XmVVszAQyTtMdNkyWup8p7AC9iqXkMl6QMchq3Xu7L7rCzYgjjlS/mas+bfp3ouyjPKnoh01twl4eB0Xs/1Ig== - channel: '#general' - on_build_success: false - on_build_failure: true - on_build_status_changed: true