-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bd9ea6
commit fcd0f99
Showing
1 changed file
with
9 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,29 @@ | ||
# AI-CFIA GitHub Workflows Repository | ||
|
||
Welcome to the GitHub Workflows repository of AI-CFIA! This repository contains | ||
various GitHub Actions workflows that assist in automating our software | ||
development processes. | ||
Welcome to the GitHub Workflows repository of AI-CFIA! This repository contains various GitHub Actions workflows that assist in automating our software development processes. | ||
Check failure on line 3 in README.md GitHub Actions / markdown-link-checkLine length
|
||
|
||
## Overview | ||
|
||
This repository is dedicated to providing automated solutions and workflows for | ||
various operations within our GitHub projects. It contains a collection of | ||
reusable workflows for the CI/CD pipelines, testing, and other automated | ||
processes within GitHub Actions. | ||
This repository is dedicated to providing automated solutions and workflows for various operations within our GitHub projects. It contains a collection of reusable workflows for the CI/CD pipelines, testing, and other automated processes within GitHub Actions. | ||
Check failure on line 7 in README.md GitHub Actions / markdown-link-checkLine length
|
||
|
||
Each workflow has an associated documentation file that explains its purpose, | ||
usage, and any required secrets or inputs. You can find these files in the same | ||
directory as their corresponding workflow file. | ||
Each workflow has an associated documentation file that explains its purpose, usage, and any required secrets or inputs. You can find these files in the same directory as their corresponding workflow file. | ||
Check failure on line 9 in README.md GitHub Actions / markdown-link-checkLine length
|
||
|
||
## Workflow Documentation | ||
|
||
Here are the available workflows and their associated documentation: | ||
|
||
- [Reusable Docker Container | ||
Build](.github/workflows/workflow-build-container.md) | ||
- [Reusable Docker Container Deployment to Google Cloud | ||
Run](.github/workflows/workflow-deploy-gcp.md) | ||
- [Reusable Lint and Test Workflow for Node (React) | ||
Projects](.github/workflows/workflow-lint-test-node.md) | ||
- [Reusable Lint and Test Workflow for Python | ||
Projects](.github/workflows/workflow-lint-test-python.md) | ||
- [Reusable Workflow for Standardization | ||
Validation](.github/workflows/workflow-markdown-check.yml) | ||
- [Reusable Docker Container Build](.github/workflows/workflow-build-container.md) | ||
- [Reusable Docker Container Deployment to Google Cloud Run](.github/workflows/workflow-deploy-gcp.md) | ||
- [Reusable Lint and Test Workflow for Node (React) Projects](.github/workflows/workflow-lint-test-node.md) | ||
- [Reusable Lint and Test Workflow for Python Projects](.github/workflows/workflow-lint-test-python.md) | ||
- [Reusable Workflow for Standardization Validation](.github/workflows/workflow-markdown-check.yml) | ||
- [Reusable Build and Deploy to GitHub | ||
Pages](.github/workflows/workflow-gh-pages-deployment.md) | ||
- [Reusable Vercel Deployment](.github/workflows/workflow-vercel-deployment.md) | ||
|
||
## Usage | ||
|
||
To use these workflows in your project, you can call them using | ||
`workflow_dispatch`. Here’s a basic example of how to call a workflow: | ||
To use these workflows in your project, you can call them using `workflow_dispatch`. Here’s a basic example of how to call a workflow: | ||
Check failure on line 26 in README.md GitHub Actions / markdown-link-checkLine length
|
||
|
||
```yaml | ||
name: <Workflow's purpose> | ||
|