Git diff: A Breakdown of File Modifications
Overview
These changes introduce new workflows for automated blog generation and 'Hello World' greetings in the repository.
File wise changes made
.github/workflows/commit-blog-generator.yml
- This file contains the workflow for automatically generating blog posts from commit messages.
- A new job called "blog-generation-job" has been added to the workflow.
- This job uses the "srajansohani/commit-blog-generator" action to automatically generate blog posts from commit messages.
.github/workflows/hello.yml
- This file contains the workflow for a job that says hello.
- A new job called "hello_world_job" has been added to the workflow.
- This job uses the "actions/hello-world-javascript-action" action to say hello to a specified person.
Summary
This commit introduced a new workflow named blog-generation-job
in .github/workflows/commit-blog-generator.yml
. This workflow is triggered on push events and utilizes the commit-blog-generator
action to automatically generate blog posts. The action requires the blog domain to be specified and uses various secrets for authentication. Another new workflow called hello_world_job
was added to .github/workflows/hello.yml
. This workflow is triggered on push and pull request events and runs a job named Hello World By Srajan
that uses the hello-world-javascript-action
to greet a specific user and display the time. The greeting message can be customized, and the output time is displayed in a subsequent step.