-
-
Notifications
You must be signed in to change notification settings - Fork 311
ci: merge patch workflows #921
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
docs: | ||
name: generate vimdoc | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you might still need into issues if you don't run these sequentially 🤔 I think it makes sense to generate the docs first and then put a needs: [docs]
into the integration-table-gen job.
I'm aware that this is only a problem when someone edits the docs and edits an integration but running sequentially should be fine.
branches: | ||
- main |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be deleted now - otherwise the pull_request
event will never trigger
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That should be fine. That code is saying run on all pull requests to the main branch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
really? i would think the opposite
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, usually I do this:
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
Which translates into CI on any pushes to main, any pull requests to main and then workflow_dispatch for any manual invocations.
No description provided.