mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
0a5bd09a61
updated the branch name from main to devel in retest action workflow. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
18 lines
400 B
YAML
18 lines
400 B
YAML
---
|
|
name: test-retest-action
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
pull_request:
|
|
branches: [devel]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Docker build
|
|
# Run cd to avoid loading complete cephcsi directory in docker context
|
|
# while building retest image.
|
|
run: cd actions/retest && docker build -t retest .
|