diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..e4277fa9 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: EDA-Operator CI +on: + workflow_dispatch: + schedule: + - cron: '00 3 * * *' +env: + COLORTERM: 'yes' + TERM: 'xterm-256color' +jobs: + validate-bundle: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Validate OLM Bundle + run: make bundle diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 00000000..bca0310c --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,16 @@ +name: EDA-Operator PR +on: + pull_request: +env: + COLORTERM: 'yes' + TERM: 'xterm-256color' +jobs: + validate-bundle: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Validate OLM Bundle + run: make bundle