Skip to content

CI workflow on push #94

CI workflow on push

CI workflow on push #94

Workflow file for this run

name: CI workflow on push
on:
push:
pull_request:
schedule:
- cron: '0 2 * * *'
jobs:
codeql:
uses: canonical/sdcore-github-workflows/.github/workflows/codeql-analysis.yml@main
lint-report:
uses: canonical/sdcore-github-workflows/.github/workflows/lint-report.yaml@main
static-analysis:
uses: canonical/sdcore-github-workflows/.github/workflows/static-analysis.yaml@main
integration-test:
uses: ./.github/workflows/integration-tests.yaml
secrets: inherit
create-issue:
runs-on: ubuntu-latest
if: ${{ always() && contains(join(needs.*.result, ','), 'failure') }}
needs: [ lint-report, static-analysis, integration-test ]
steps:
- name: Check whether the issue already exists
id: check-issue
continue-on-error: true
run: |
if curl -L -H "Authorization: Bearer ${{ github.token }}" https://api.github.com/repos/$GITHUB_REPOSITORY/issues | grep "CI run failed"; then
echo ISSUE_EXISTS="True" >> $GITHUB_OUTPUT
else
echo ISSUE_EXISTS="False" >> $GITHUB_OUTPUT
fi
- name: Create issue
if: steps.check-issue.outputs.ISSUE_EXISTS == 'False'
uses: dacbd/create-issue-action@main
with:
token: ${{ github.token }}
title: CI run failed
body: |
### Context
[Failed Run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
[Codebase](https://github.com/${{ github.repository }}/tree/${{ github.sha }})