We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44467f5 commit 17c8af3Copy full SHA for 17c8af3
1 file changed
.github/workflows/bot_build.yml
@@ -0,0 +1,28 @@
1
+name: Bot symlink
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "main" ]
6
7
+jobs:
8
+ build_script:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout repo
13
+ uses: actions/checkout@v4
14
15
+ - name: Git clone software-layer-scripts
16
+ run: git clone https://github.com/EESSI/software-layer-scripts
17
18
+ - name: Run symlink commands
19
+ run: |
20
+ set -e
21
22
+ for file in $(ls software-layer-scripts | egrep -v 'easystacks|LICENSE|README.md|^bot'); do
23
+ ln -s software-layer-scripts/${file}
24
+ done
25
26
+ for file in $(ls software-layer-scripts/bot | grep -v '^build.sh'); do
27
+ ln -s ../software-layer-scripts/bot/${file} bot/${file}
28
0 commit comments