File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
ansible/roles/podman/tasks Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 2525 steps :
2626 - uses : actions/checkout@v2
2727
28+ - name : Override CI_CLOUD if PR label is present
29+ if : ${{ github.event_name == 'pull_request' }}
30+ run : |
31+ # Iterate over the labels
32+ labels=$(echo '${{ toJSON(github.event.pull_request.labels) }}' | jq -r '.[].name')
33+ echo $labels
34+ for label in $labels; do
35+ if [[ $label == CI_CLOUD=* ]]; then
36+ # Extract the value after 'CI_CLOUD='
37+ CI_CLOUD_OVERRIDE=${label#CI_CLOUD=}
38+ echo "CI_CLOUD=${CI_CLOUD_OVERRIDE}" >> $GITHUB_ENV
39+ fi
40+ done
41+
2842 - name : Record settings for CI cloud
2943 run : |
3044 echo CI_CLOUD: ${{ env.CI_CLOUD }}
Original file line number Diff line number Diff line change 5555 # Type Path Mode User Group Age Argument
5656 R! /tmp/containers-user-*
5757 R! /tmp/podman-run-*
58+ R! /tmp/storage-run-*
5859 dest : /etc/tmpfiles.d/podman-local.conf
5960 owner : root
6061 group : root
Original file line number Diff line number Diff line change 2525
2626collections :
2727 - name : containers.podman
28- version : 1.10 .2
28+ version : 1.16 .2
2929 - name : community.grafana
3030 version : 1.5.4
3131 - name : https://github.com/stackhpc/ansible_collection_slurm_openstack_tools
You can’t perform that action at this time.
0 commit comments