Skip to content

Commit cf627e2

Browse files
committed
Remove references to eic in favor of cvmfs-contrib
1 parent d9a94ac commit cf627e2

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/cvmfs_http_proxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v2
8-
- uses: eic/setup-cvmfs@main
8+
- uses: cvmfs-contrib/setup-cvmfs@main
99
with:
1010
cvmfs_http_proxy: 'auto'
1111
- name: Setup CernVM-FS

.github/workflows/cvmfs_repositories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v2
8-
- uses: eic/setup-cvmfs@main
8+
- uses: cvmfs-contrib/setup-cvmfs@main
99
with:
1010
cvmfs_repositories: 'eic.opensciencegrid.org'
1111
- name: Setup CernVM-FS

.github/workflows/minimal-usage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v2
8-
- uses: eic/setup-cvmfs@main
8+
- uses: cvmfs-contrib/setup-cvmfs@main
99
- name: Setup CernVM-FS
1010
run: cat /etc/cvmfs/default.local && ls /cvmfs/eic.opensciencegrid.org/

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# GitHub Action: eic/setup-cvmfs
1+
# GitHub Action: cvmfs-contrib/github-action-cvmfs
22
This GitHub Action sets up CernVM-FS for use in GitHub Workflows.
33

44
## Instructions
5-
You can use this GitHub Action in a workflow in your own repository by with `uses: eic/setup-cvmfs@main`.
5+
You can use this GitHub Action in a workflow in your own repository by with `uses: cvmfs-contrib/setup-cvmfs@main`.
66

77
For example, the file `.github/workflows/tests.yml` could include the following stanza:
88
```yaml
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: eic/setup-cvmfs@main
13+
- uses: cvmfs-contrib/setup-cvmfs@main
1414
```
1515
1616
## Optional Parameters
@@ -20,7 +20,7 @@ The following parameters are supported:
2020

2121
## Minimal Example
2222

23-
The following minimal example, which is also a workflow in this repository at [.github/workflows/minimal-usage.yml](https://github.com/eic/setup-cvmfs/tree/main/.github/workflows/minimal-usage.yml), setups up CernVM-FS and lists the contents of the `/cvmfs/eic.opensciencegrid.org` directory.
23+
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), setups up CernVM-FS and lists the contents of the `/cvmfs/grid.cern.ch` directory.
2424
```yaml
2525
name: Test setup-cvmfs action
2626
on: [push, pull_request]
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v2
32-
- uses: eic/setup-cvmfs@main
32+
- uses: cvmfs-contrib/setup-cvmfs@main
3333
- name: Setup CernVM-FS
3434
run: cat /etc/cvmfs/default.local && ls /cvmfs/eic.opensciencegrid.org/
3535
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'CernVM-FS'
1+
name: 'setup-cvmfs'
22
description: 'Load the CernVM-FS filesystem at /cvmfs'
33
branding:
44
icon: 'database'

setup-cvmfs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sudo apt-get -q update
77
sudo apt-get -q -y install cvmfs cvmfs-config-default
88
rm -f cvmfs-release-latest_all.deb
99

10-
# Setup eic.opensciencegrid.org
10+
# Setup default.local
1111
sudo mkdir -p /etc/cvmfs
1212
echo "CVMFS_REPOSITORIES=${INPUT_CVMFS_REPOSITORIES:-atlas.cern.ch,atlas-condb.cern.ch,grid.cern.ch}" | sudo tee /etc/cvmfs/default.local
1313
echo "CVMFS_HTTP_PROXY=${INPUT_CVMFS_HTTP_PROXY:-DIRECT}" | sudo tee -a /etc/cvmfs/default.local

0 commit comments

Comments
 (0)