https://github.com/32teeth/githubworkflows
https://github.com/32teeth/githubworkflows
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/32teeth/githubworkflows
- Owner: 32teeth
- Created: 2023-12-13T19:04:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-13T22:54:56.000Z (over 1 year ago)
- Last Synced: 2025-02-14T16:39:26.660Z (over 1 year ago)
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Add step view to your workflow

## Caller Workflow [](https://github.com/32teeth/GitHubWorkflows/actions/workflows/caller.yml)
1. Create a new GitHub Actions workflow file in your repository, for example, `caller.yml`.
2. Copy the provided workflow YAML into `caller_workflow.yml`.
3. Optionally, replace the placeholder credentials (`${{ secrets.CREDENTIAL1 }}` and `${{ secrets.CREDENTIAL2 }}`) with your actual secrets.
4. Adjust any other configuration settings as needed.
5. Commit and push the changes to your repository.
## Check Workflow [](https://github.com/32teeth/GitHubWorkflows/actions/workflows/check.yml)
1. Create a new GitHub Actions workflow file in your repository, for example, `check.yml`.
2. Copy the provided workflow YAML into `check.yml`.
3. Adjust any configuration settings as needed.
4. Commit and push the changes to your repository.
## Pre Flight Workflow [](https://github.com/32teeth/GitHubWorkflows/actions/workflows/pre-flight.yml)
1. Create a new GitHub Actions workflow file in your repository, for example, `pre-flight.yml`.
2. Copy the provided workflow YAML into `pre-flight.yml`.
3. Adjust any configuration settings as needed.
4. Commit and push the changes to your repository.
## Reusable Workflow [](https://github.com/32teeth/GitHubWorkflows/actions/workflows/reusable.yml)
1. Create a reusable workflow file named `reusable.yml`.
2. Copy the provided workflow YAML into `reusable.yml`.
3. Add the necessary steps and logic for your reusable workflow.
4. Commit and push the changes to your repository.
5. Ensure that the main workflow (`caller.yml`) properly triggers the `reusable` job with the required inputs.
6. Test the workflow to ensure it behaves as expected.
Make sure that your repository has appropriate secrets set up in GitHub Settings, and ensure that the workflows are properly configured to use these secrets. Also, ensure that the triggers and conditions for each workflow suit your project requirements.