Skip to content

Build: Add automerge job workflow #1

Build: Add automerge job workflow

Build: Add automerge job workflow #1

Workflow file for this run

on:
push:
branches:
- main
tags:
- "*.*.*"
pull_request:
jobs:
docker:
uses: ./.github/workflows/docker-image.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 11, Col: 11): Secret github-token is required, but not provided while calling.
test:
uses: ./.github/workflows/test.yml
automerge:
uses: ./.github/workflows/automerge.yml
needs:
- docker
- test
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
# vim:ft=yaml:et:ts=2:sw=2