Skip to content

Fix a word in Readme #10

Fix a word in Readme

Fix a word in Readme #10

Workflow file for this run

name: Push Workflow
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Notify Push
uses: wonejomb/[email protected]
with:
webhook_url: ${{ secrets.webhook_url }}
webhook_name: 'GuidebookAPI/Github'
status: 'started'
webhook_avatar: ${{ secrets.webhook_avatar }}
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1000
fetch-tags: true
- name: Notify On Success
if: success()
uses: wonejomb/[email protected]
with:
webhook_url: ${{ secrets.webhook_url }}
webhook_name: 'GuidebookAPI/Github'
status: 'success'
webhook_avatar: ${{ secrets.webhook_avatar }}
- name: Notify On Failure
if: failure ()
uses: wonejomb/[email protected]
with:
webhook_url: ${{ secrets.webhook_url }}
webhook_name: 'GuidebookAPI/Github'
status: 'failure'
webhook_avatar: ${{ secrets.webhook_avatar }}