Skip to content

CI: Setup CI automerge #1

CI: Setup CI automerge

CI: Setup CI automerge #1

Workflow file for this run

name: "CI"
on:
push:
branches:
- main
tags:
- "*.*.*"
pull_request:
jobs:
test:
uses: ./.github/workflows/test.yml

Check failure on line 13 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/test.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
if: ${{ github.event_name == 'pull_request' }}
automerge:
uses: ./.github/workflows/automerge.yml
needs:
- docker
- test
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
# vim:ft=yaml:et:ts=2:sw=2