From 297883fa2ba42a9a1dcafd1c3c1a39755e183b07 Mon Sep 17 00:00:00 2001 From: Valentin Volkl Date: Tue, 19 May 2026 22:08:09 +0200 Subject: [PATCH] Remove "Minimal Example" section from Readme This is duplicated with the example at the top of the readme, and the workflow file referenced in the link also doesn't exist anymore. --- README.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/README.md b/README.md index 280df6f..b548b33 100644 --- a/README.md +++ b/README.md @@ -109,25 +109,7 @@ All optional parameters are set by default to `''`(empty string). All variables - `cvmfs_ubuntu_deb_location`: `https://cvmrepo.s3.cern.ch/cvmrepo/apt/cvmfs-release-latest_all.deb` - `cvmfs_config_package`: `cvmfs-config-default` -## Minimal Example -The following minimal example, which is also a workflow in this repository at [.github/workflows/minimal-usage.yml](https://github.com/cvmfs-contrib/github-action-cvmfs/tree/main/.github/workflows/minimal-usage.yml), sets up CernVM-FS and lists the contents of the selected repositories from `*.cern.ch, *.egi.eu, *.opensciencegrid.org *.hsf.org`. -```yaml -name: Minimal usage -on: [push, pull_request] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: cvmfs-contrib/github-action-cvmfs@v4 - - name: Test CernVM-FS - run: | - ls /cvmfs/lhcb.cern.ch - ls /cvmfs/auger.egi.eu - ls /cvmfs/dune.opensciencegrid.org - ls /cvmfs/sw.hsf.org - ls /cvmfs/sft.cern.ch -``` ## What Does This Action Do?