Skip to content

Commit

Permalink
Feat: Updated the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyanthakur committed Oct 8, 2024
2 parents 182ff47 + ab58c7f commit f8071b1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: "Greetings"
name: 'Greetings'

on:
push:
branches:
- "**"
- '**' # Trigger on all branches for push events
issues:
types: [opened]
types: [opened] # Trigger on issue opened events
pull_request:
branches:
- "**"
types: [opened]
- '**' # Trigger on pull request opened for all branches
types: [opened] # Trigger on pull request events like opened, reopened if needed

permissions:
issues: write
pull-requests: write
pull-requests: write # Ensure pull request permissions are explicitly set to 'write'

jobs:
welcome:
Expand All @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v1
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }} # Ensure the token is set
issue-message: |
Welcome, @${{ github.actor }}! Thanks for raising the issue.
Soon the maintainers/owner will review it and provide you with feedback/suggestions.
Expand All @@ -31,4 +31,4 @@ jobs:
Great job, @${{ github.actor }}! Thanks for creating the pull request.
Soon the maintainers/owner will review it and provide you with feedback/suggestions.
Make sure to **star this awesome repository** and **follow the account** for updates!
footer: "Make sure to stay involved and contribute to the project!"
footer: 'Make sure to stay involved and contribute to the project!'
5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ body .title {
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.title a {
text-decoration: none;
color: red;
}
.container {
display: flex;
flex-wrap: wrap;
Expand Down

0 comments on commit f8071b1

Please sign in to comment.