-
-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Description
Looks like the CI errors noted in #32 were introduced by #31 being auto-merged by
syntax_tree-haml/.github/workflows/main.yml
Lines 28 to 41 in 8dac220
automerge: | |
name: AutoMerge | |
needs: ci | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]' | |
steps: | |
- uses: actions/github-script@v3 | |
with: | |
script: | | |
github.pulls.merge({ | |
owner: context.payload.repository.owner.login, | |
repo: context.payload.repository.name, | |
pull_number: context.payload.pull_request.number | |
}) |
For some reason the same CI was run twice, but once as a no-op (which passed) and once with the actual tests (which failed). I think the GitHub Actions configuration needs to be updated somehow to prevent that.
Metadata
Metadata
Assignees
Labels
No labels