Skip to content

Auto Message and Star #6

Auto Message and Star

Auto Message and Star #6

# This is a basic workflow to help you get started with Actions
name: First-Greeting
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
watch:
branches: [ "main" ]
fork:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hi $USER_NAME!
# Runs a set of commands using the runners shell
- name: Add HTML to greetings
run: |
echo '<h1> Give us a star if you haven't yet </h1>' >> $GITHUB_STEP_SUMMARY
echo '<a class="github-button" href="https://github.com/allanoguis/coding-notes" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star your-username/your-repo on GitHub">Star</a>' >> $GITHUB_STEP_SUMMARY
echo '<script async defer src="https://buttons.github.io/buttons.js"></script>' >> $GITHUB_STEP_SUMMARY