-
Notifications
You must be signed in to change notification settings - Fork 9.1k
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
automation improvement - workflow templates and github action definitions #4234
Comments
Looking at the three incarnations of the
Would we start with an action for step 3 to get rid of the three slightly different copies of the HTML build scripts? Or would we want to have a (composite?) action that performs all four steps so that the three reduced workflows would only differ in the value of a "spec" action parameter? The same could be used for the The |
I'd start with making 3 an action, it's going to be atomic and easier to test. You can always make a composite one after you've done so. |
Step 3 looks to be the same in all three repos on the surface: - name: run main script
run: scripts/md2html/build.sh Inside the repo-specific OpenAPI-Specification/scripts/md2html/build.sh Lines 13 to 37 in ba75c29
This could be harmonized by materializing the editors lists as additional files Then the build script can become repo-agnostic. @OAI/tsc: any concerns? |
@ralfhandl makes sense to me. The whole thing with MAINTAINERS and EDITORS has become very convoluted. Just saving the correct snapshot per version seems much easier to understand, and then we don't have multiple overlapping files because the editors and TSC aren't quite the same set of people. |
During today's TDC call #4220 @handrews brought up the fact that we might have misalignment and duplication of workflows and scripts across repositories.
It of course make sense to rationalize that to improve reliability and reduce maintenance costs.
I promised during the call I'd recap my suggestions on an issue, here are two ways we could rationalize that:
Duplicated scripts should really be GitHub actions
GitHub actions can be defined to wrap up scripts and their runtime environment. Not only that enables easy reusability across multiple repos, it also makes consuming workflows simpler since they don't need to setup the runtime for the script (node, powershell, python, etc...)
Here is an example of a custom action that comments on pull requests based on an input file it parses. Note that it contains multiple things:
This action can now be consumed like any other in a workflow example
You can have multiple action definitions or a single one per repo, it's really up to you. And you can rely on workflows to test your action logic, making it more reliable.
Additionally, actions are versioned using git tags, and upgrades can be automated via dependabot.
Another benefit of this approach is to be able to run the script locally by just running the image, no additional requirements beyond docker.
One downside of using dockerfile is that now the container needs to be built for every execution of the consuming workflow. This is easily fixed by adding another workflow where the action definition builds the image and publishes it to GitHub artifacts, and updating the "image" field in the actions.yaml.
more information
Reusable workflows
I think this documentation page is great as an introduction.
The goal would be to have a central repo for all the reusable workflows, and refer to them in target repositories.
Additional solutions
I hope this provides good context for discussions.
Let me know if you have any additional comments or questions.
The text was updated successfully, but these errors were encountered: