We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09a8ce8 commit d082b44Copy full SHA for d082b44
.github/workflows/containers_config.yml
@@ -1,7 +1,7 @@
1
name: Container Configs
2
3
on:
4
- # FIXME Remove these and only run on release or PRs to main
+ # FIXME Remove these and only run on release or PRs to main or TEMPLATE updates
5
push:
6
branches: [main,dev]
7
pull_request:
@@ -36,4 +36,14 @@ jobs:
36
profile="wave,${{ matrix.container_type }}"
37
fi
38
nextflow inspect . -profile $profile -format config > conf/containers/containers_${{ matrix.container_type }}_${{ matrix.architecture }}.config
39
+ - name: Commit & push changes
40
+ id: commit-and-push
41
+ run: |
42
+ git config user.email "core@nf-co.re"
43
+ git config user.name "nf-core-bot"
44
+ git config push.default upstream
45
+ git add .
46
+ git status
47
+ git commit -m "[automated] Update container configs"
48
+ git push
49
0 commit comments