Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/auto-reply.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: 🤖 Auto-Reply to Issues

on:
issues:
types: [opened]

permissions:
issues: write

jobs:
auto-comment:
runs-on: ubuntu-latest

steps:
- name: Comment on new issue
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const issueNumber = context.issue.number;
const username = context.payload.issue.user.login;
const comment = [
`👋 Hello @${username}, thank you for opening an issue!`,
``,
`I will get back to you as soon as i can. - 1501henify`,
``,
`We appreciate your input — Have a great day/night!`
].join('\n');

await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
body: comment
});
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 🐍 Henry’s Python Learning Journey

## 📅 Progress
## 📅 My Progress
<<<<<<< HEAD

```diff
Expand All @@ -15,15 +15,15 @@ Each one is a small step toward becoming a full-stack developer.
---

## 📆 Day Counter
✨ **Day 8 of Learning Python** ✨
✨ **Day 9 of Learning Python** ✨

<!-- STATS:START -->
📄 Total lines of code: 1280
🐍 Number of Python files: 21
<!-- STATS:END -->

<!-- UPDATED:START -->
🕒 Last updated: 2025-09-20 00:59 UTC
🕒 Last updated: 2025-09-20 21:38 UTC
<!-- UPDATED:END -->