Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync branches #83

Merged
merged 1 commit into from
Aug 10, 2024
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
33 changes: 33 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Auto-Reply to PR
on:
pull_request:
types: [opened]

jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Reply to PR
uses: actions/github-script@v5
with:
script: |
const prComment = `
🖐️ Hello @${{ github.actor }}!
Thank you for your contribution. We will review your pull request soon. Please make sure you have followed our contributing guidelines.
`;

github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: prComment
});

github.rest.issues.update({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['enhancement', 'new']
});
2 changes: 1 addition & 1 deletion todo.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
○ Refactor the code(I have no time for it)
○ Make cheat multi-tread(I have no time for it)
○ Add spec list
○ Add Offsets auto load(nearest)
○ Make menu looks nice(low priority)
◎ Add spec list
◎ Use JSON instead YAML
◎ Fixed triggerbot bug
◎ Add hit markers(mb I should del hit sound)
Expand Down
Loading